Re: [Wicket-user] Wicket + Sitemesh - Page truncation problem

2006-06-28 Thread Eelco Hillenius
I had problems with sourceforge too today. Thanks Ingram, Eelco On 6/28/06, Ingram Chen <[EMAIL PROTECTED]> wrote: > I will post it after sourceforge allow login. > > > On 6/29/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > > Thanks. Would you mind attaching that to an issue on sourceforge ple

Re: [Wicket-user] Wicket + Sitemesh - Page truncation problem

2006-06-28 Thread Ingram Chen
I will post it after sourceforge allow login. On 6/29/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: Thanks. Would you mind attaching that to an issue on sourceforge please?Eelco On 6/27/06, Ingram Chen <[EMAIL PROTECTED]> wrote:>> Is there any progress on this issue ?>> I tried Wicket 1.2 + SiteMe

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Eelco Hillenius
Yeah, ok. I agree with Igor now too. Just wanted to make sure you didn't miss the render strategy. Eelco On 6/28/06, Ittay Dror <[EMAIL PROTECTED]> wrote: > > > Eelco Hillenius wrote: > > Thanks a lot for the contributions. I haven't looked to deep into the > > details, but I noticed your way o

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Ittay Dror
Eelco Hillenius wrote: > Thanks a lot for the contributions. I haven't looked to deep into the > details, but I noticed your way of turning off redirects. I think what > you're actually looking for is: > > getRequestCycleSettings().setRenderStrategy(IRequestCycleSettings.ONE_PASS_RENDER); > > w

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Eelco Hillenius
True. But only for the redirect-after-post (which actually is redirect after post/get with Wicket), so it won't kill any application logic. But igor is right, it might be 'more than you need' to configure your whole application like this. Eelco On 6/28/06, Igor Vaynberg <[EMAIL PROTECTED]> wrot

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Igor Vaynberg
but doing that will affect all of the app, so if you have pages outside of jsp they will be affected also-IgorOn 6/28/06, Eelco Hillenius < [EMAIL PROTECTED]> wrote:Thanks a lot for the contributions. I haven't looked to deep into the details, but I noticed your way of turning off redirects. I thin

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Eelco Hillenius
Thanks a lot for the contributions. I haven't looked to deep into the details, but I noticed your way of turning off redirects. I think what you're actually looking for is: getRequestCycleSettings().setRenderStrategy(IRequestCycleSettings.ONE_PASS_RENDER); which you should call in YourWebApplicat

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Ittay Dror
ok, created http://www.wicket-wiki.org.uk/wiki/index.php/Jsp_Integration Eelco Hillenius wrote: > I think it might help a lot of users to write a WIKI page on this. > Ittay and John, it would be welcome to share your experiences :) > > Eelco > > > On 6/28/06, Ittay Dror <[EMAIL PROTECTED]> wrot

Re: [Wicket-user] How to update the data of DataTable?

2006-06-28 Thread Igor Vaynberg
class TestPage externds WebPage {   private String sql;      public String getSql() { return sql; }   public TestPage() {    ...    add(new TextArea("foo", new PropertyModel(this, "sql")));     ...    IDataProvider dp=new IDataProvider() {    Iterator iterator(...) {    return database.

[Wicket-user] How to update the data of DataTable?

2006-06-28 Thread itsliang
Hi all, I am having a page contains a Form component and a DataTable component. There is only one TextArea component and one submit button within my Form. Below that Form, there is my DataTable. The DataTable is primarily used to show the data from database. The TextArea, of course, is used to ge

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Eelco Hillenius
And what about using a simple iframe? Wouldn't that work for many cases? Eelco On 6/28/06, Ingram Chen <[EMAIL PROTECTED]> wrote: > Thanks your suggestion, sitemesh doesn't work for us... so we need to find > another solution. I had tried Include component, it includes "static" > content of the

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Ingram Chen
Wow! this will be great help, Could you give us a simple example ?On 6/29/06, Ittay Dror <[EMAIL PROTECTED] > wrote:i have done the reverse: embedding wicket in a jsp page. if that interests you, i'll be glad to help Ingram Chen wrote:> We want to merge wicket into exist struts project and ther

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Ingram Chen
Thanks your suggestion, sitemesh doesn't work for us... so we need to find another solution. I had tried Include component, it includes "static" content of the resource. this is useful in another case. but what I looking for is including "dynamic" output of jsp (the jsp contains struts, acegi...et

Re: [Wicket-user] Wicket + Sitemesh - Page truncation problem

2006-06-28 Thread Eelco Hillenius
Thanks. Would you mind attaching that to an issue on sourceforge please? Eelco On 6/27/06, Ingram Chen <[EMAIL PROTECTED]> wrote: > > Is there any progress on this issue ? > > I tried Wicket 1.2 + SiteMesh but still out of luck... > > I create a quick-start to reproduce this problem: > > The at

Re: [Wicket-user] Disabling Palette

2006-06-28 Thread Martijn Dashorst
Gennadiy, Sometimes things are not bugs but just don't work as people expect them to do, or sometimes a feature is missing. These things are also incorporated into Wicket and reported as fixed. Regarding the quality of our development proces... I think Wicket is one of the best frameworks out the

Re: [Wicket-user] Disabling Palette

2006-06-28 Thread Eelco Hillenius
We reprimanded Igor for fixing the bug without first writing a proposal, organize two meetings about it (with coffee and snacks), making a branch to for his fix, letting our official test comittee loose on it, interpret their results, organize another meeting, changing the proposal from v.0.3.6 to

Re: [Wicket-user] Disabling Palette

2006-06-28 Thread Gennadiy . Vasilevskiy
Hello Igor, We are prototyping the solution to use wicket for internal development in our company. We like a lot what we see. The only problem that is bothering me is that at this point there are quite a few "does not work"/"fixed" emails circulating in the users list. While it is good to see

Re: [Wicket-user] Disabling Palette

2006-06-28 Thread Igor Vaynberg
fixedyou can either check out from svn WICKET_1_2 branch,get the snapshot from here: http://maven.sateh.com/wicket/wicket/wicket-extensions/1.2-SNAPSHOT/ in about an hour or soor wait for the 1.2.1-IgorOn 6/28/06, samyem <[EMAIL PROTECTED]> wrote: How do I disable a Palette? setEnabled(false) appa

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Eelco Hillenius
I think it might help a lot of users to write a WIKI page on this. Ittay and John, it would be welcome to share your experiences :) Eelco On 6/28/06, Ittay Dror <[EMAIL PROTECTED]> wrote: > i have done the reverse: embedding wicket in a jsp page. if that interests > you, i'll be glad to help >

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Ittay Dror
i have done the reverse: embedding wicket in a jsp page. if that interests you, i'll be glad to help Ingram Chen wrote: > We want to merge wicket into exist struts project and there are some > parts > of system still requires jsp. Could I include jsp (output of jsp) in > wicket page ? > >

[Wicket-user] Disabling Palette

2006-06-28 Thread samyem
How do I disable a Palette? setEnabled(false) apparently didn't work for some reason. -- View this message in context: http://www.nabble.com/Disabling-Palette-tf1863672.html#a5091463 Sent from the Wicket - User forum at Nabble.com. Using Tomcat but need to do more? Need to support web services

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread John Patterson
Hi Ingram,I have been using Wicket in a Webwork based application which I imagine would be very similar to what you want to do.  Both frameworks register a Servlet to handle requests and can be mapped to any servlet path.  I have had no problems switching from pages in one framework to the other. 

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Eelco Hillenius
There is the Include component, which does stuff like that in a very basic way. There is an open issue for improving the Include component. It's been there for quite a while, but as I don't use the component myself (and neither is any of the core developers to my knowledge) I'd prefer for someone t

Re: [Wicket-user] Auto-reloading template files

2006-06-28 Thread Igor Vaynberg
you might have to call getresourcesettings().addresourcefoler and point it to where either your src folder with the markup files is or at some exploded packaging location.-Igor On 6/28/06, Stefan Arentz <[EMAIL PROTECTED]> wrote: On 6/28/06, Johan Compagner <[EMAIL PROTECTED]> wrote:> and that shou

Re: [Wicket-user] Auto-reloading template files

2006-06-28 Thread Stefan Arentz
On 6/28/06, Johan Compagner <[EMAIL PROTECTED]> wrote: > and that shouldn't be called by yourself if possible, > Just set the web.xml property or the system property to development. I've done that, but changes to the html files are still not picked up. Not sure why :-/ S. Using Tomcat but need

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Sean Sullivan
This might be useful: http://www.wicket-wiki.org.uk/wiki/index.php/Redirect_to_non-wicket_page Ingram Chen wrote: > We want to merge wicket into exist struts project and there are > some parts > of system still requires jsp. Could I include jsp (output of jsp) in > wicket page ? > > Any

Re: [Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Frank Silbermann
I don't see why it would be any harder than embedding JSP in an ASP.NET page (or vice-versa). From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ingram ChenSent: Wednesday, June 28, 2006 11:58 AMTo: wicket-user@lists.sourceforge.netSubject: [Wicket-user] Is it possible to embe

Re: [Wicket-user] Link, ExternalLink, onclick and ampersand

2006-06-28 Thread Eelco Hillenius
Thanks for noting Sven. When looking at it, I came across some other issues, like Link and ExternalLink not properly behaving with wrote: > +1 > Juergen > > On 6/28/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > > I think you're right and external link should do this too. Anyone else > > an opin

[Wicket-user] Is it possible to embed jsp in wicket ?

2006-06-28 Thread Ingram Chen
    We want to merge wicket into exist struts project and there are some parts of system still requires jsp. Could I include jsp (output of jsp) in wicket page ? Any suggestion are welcome ! -- Ingram ChenJava [EMAIL PROTECTED]Institue of BioMedical Sciences Academia Sinica Taiwanblog: http://www.

Re: [Wicket-user] RadioGroup onchange event (Wicket 1.2)

2006-06-28 Thread Igor Vaynberg
the problem is that radiogroup is not a component on its own, neither is radio, instead you have to think of them as a composite component - both parts working together. you add a behavior to the radiogroup, but a radiogroup is nothing more then a wicket proxy for the radio components. in fact if y

Re: [Wicket-user] Auto-reloading template files

2006-06-28 Thread Johan Compagner
and that shouldn't be called by yourself if possible,Just set the web.xml property or the system property to development.johanOn 6/19/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote:  public void init()  {   configure("development", "/");   }-IgorOn 6/19/06, Stefan Arentz < [EMAIL PROTECTED]> wrote:

[Wicket-user] RadioGroup onchange event (Wicket 1.2)

2006-06-28 Thread Paolo Di Tommaso
I have a RadioGroup with some radio buttons inside. Is ti possibile intercept radio selection change via ajax?? I've tried something like this, but nothing happens.: RadioGroup theGroup = new RadioGroup( "group-request-type", new PropertyModel(myBean,"requestType") ); theGroup.add( new Radio("radio

Re: [Wicket-user] Allow nested components in VelocityPanel

2006-06-28 Thread Jean-Baptiste Quenot
Hi, To followup on this issue: [ 1485695 ] Allow to reinvoke FileResourceStream.getInputStream(), I'm attaching a new patch against Wicket 1.2-rc1 that keeps backwards compatibility on FileResourceStream.getInputStream(), but fixes AbstractResourceStream.asString() to allow for multiple invocati

Re: [Wicket-user] Wicket fundamentals

2006-06-28 Thread Johan Compagner
and in 2.0 this would even be harder because the parent also must be given in the constructorso you can give a child component to a parent component anymore anyway.johan On 6/27/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: Hi Frank,What you stumble upon is largely a matter of individual taste of

Re: [Wicket-user] Wicket 1.2 and Websphere 5.1.0/JBoss 3.2.7.

2006-06-28 Thread Johan Compagner
curious what it then was.. What does a IDE do that you have at debug/runtime problems?johanOn 6/28/06, A. Zwaan < [EMAIL PROTECTED]> wrote: Lo all,   I found the problem... It was the JBoss IDE in Eclipse that was causing my memory problems. I thought I'd try running it outside of

Re: [Wicket-user] Wicket 1.2 and Websphere 5.1.0/JBoss 3.2.7.

2006-06-28 Thread A. Zwaan
Lo all,   I found the problem... It was the JBoss IDE in Eclipse that was causing my memory problems. I thought I’d try running it outside of Eclipse for a change (like we’re doing with Websphere), resulting in about the same performance as Websphere. I guess the JBoss IDE can’t handle t