Re: How to pass an arbitrary javascript variable to onSubmit?

2008-04-13 Thread Martin Grigorov
See https://issues.apache.org/jira/browse/WICKET-1379 On Fri, 2008-04-11 at 09:32 -0400, Jeremy Levy wrote: Check out IAjaxCallDecorator getAjaxCallDecorator(). Jeremy On Fri, Apr 11, 2008 at 4:42 AM, Vitaly Tsaplin [EMAIL PROTECTED] wrote: I am doing it exactly like this. I am

Re: Ajax postcall handler does not get called every time

2008-04-13 Thread Matthew Young
The problem is you are ajax updating this whole thing including the nested ajaxlink: div wicket:id=container div wicket:id=count/div a wicket:id=linklink/a /div it causes the wicket-ajax js stuff header contributed everytime the link is clicked. Open the

Re: onBeforeRender vs. prepareForRender

2008-04-13 Thread Stefan Simik
Thank you both guys, all works fine now :) The problem was, that I was using method prepareForRender(), instead of the onBeforeRender(). Thanx boys -- View this message in context: http://www.nabble.com/onBeforeRender-vs.-prepareForRender-tp16653398p16657001.html Sent from the Wicket - User

Applet parameter

2008-04-13 Thread Mathias P.W Nilsson
Hi! How can I add dynamic parameters to my applet from wicket? param name=DocumentId value=292640/ The value needs to come from wicket. How can I add this? -- View this message in context: http://www.nabble.com/Applet-parameter-tp16657238p16657238.html Sent from the Wicket - User mailing

Re: Applet parameter

2008-04-13 Thread Edvin Syse
Mathias P.W Nilsson wrote: Hi! How can I add dynamic parameters to my applet from wicket? param name=DocumentId value=292640/ The value needs to come from wicket. How can I add this? You can use a WebMarkupContainer for this. HTML: applet ... param wicket:id=documentId

Re: Ajax postcall handler does not get called every time

2008-04-13 Thread Robin Shine
Hi Matt, Thanks for your quick answer. Although in this simple case, it is enough to only update the count label. However in my application, it is necessary to update the whole region including the component initiating the ajax action. One scenario is that I've written a treetable component

Re: Removing the jsessionid for SEO

2008-04-13 Thread Korbinian Bachl - privat
Hi Jeremy, youre absolutely right; Nearly all spiders today can handle the default sessions, may it be Java, PHP, .Net etc. ; those guys at google and mircosoft arent beginners! And its also important to understand that a URL with wicket in fact is to a part nothing more than a plain string

Re: Shared resources with parameters?

2008-04-13 Thread Korbinian Bachl - privat
Hi Erik, you might want to use IndexedPageParams, so you could do: mount(/myPath, myForwardClass.class); in init; the parameter with index 0 is the first one, the index 1 is second and so on, delimiteds are the ones by / eg: myapp.com/myPath/param0/param1/param2 ... and so on;

Wicket In Action - London Wicket Event draw winners

2008-04-13 Thread jweekend
At our London Wicket Events since February, we have been holding a draw for http://chillenious.wordpress.com/ Eelco and http://martijndashorst.com/blog/ Martijn' s Wicket In Action, which is pretty complete now and a great resource for any Wicket developer; the result of a great amount of

wicket-contrib-javaee

2008-04-13 Thread greeklinux
Hello, I am building an ee application and I want to use wicket in the web tier. Now I find wicket-contrib-javaee on wicketstuff.org and it looks nice. But there is a problem. It is not possible to initialize the injection in the WebApplications init() method with:

Re: wicket-contrib-javaee

2008-04-13 Thread Igor Vaynberg
do you have the wicket-contrib-javaee jar on the classpath? -igor On Sun, Apr 13, 2008 at 8:39 AM, greeklinux [EMAIL PROTECTED] wrote: Hello, I am building an ee application and I want to use wicket in the web tier. Now I find wicket-contrib-javaee on wicketstuff.org and it looks nice.

Re: Applet parameter

2008-04-13 Thread Mathias P.W Nilsson
I looked at this example and solved it. http://cwiki.apache.org/WICKET/object-container-adding-flash-to-a-wicket-application.html http://cwiki.apache.org/WICKET/object-container-adding-flash-to-a-wicket-application.html -- View this message in context:

Re: wicket-contrib-javaee

2008-04-13 Thread greeklinux
Hello, thank you. wicket-ioc was the missing part. On the wiki page of wicket-contrib-javaee there was no information about this dependency. greeklinux wrote: Hello, I am building an ee application and I want to use wicket in the web tier. Now I find wicket-contrib-javaee on

Re: CheckGroupSelector problem

2008-04-13 Thread atul singh
But I feel this should be the default behavior of the selector check-box.Don't you think so? On Sun, Apr 13, 2008 at 7:58 AM, Ryan Holmes [EMAIL PROTECTED] wrote: Looks like CheckGroupSelector does not have a model. You could create a behavior (e.g. by subclassing AbstractBehavior)

Re: DatePicker Simple Question

2008-04-13 Thread Ayodeji Aladejebi
thanks On 4/12/08, Gerolf Seitz [EMAIL PROTECTED] wrote: iirc, the default behavior is that you can click on the month, and then an advanced month/year selection will be displayed. if that's not the case, you need to override Datepicker#enableMonthYearSelection and return true. Gerolf

Re: wicket-contrib-javaee

2008-04-13 Thread Igor Vaynberg
if you used maven it wouldve all been setup for you... -igor On Sun, Apr 13, 2008 at 12:46 PM, greeklinux [EMAIL PROTECTED] wrote: Hello, thank you. wicket-ioc was the missing part. On the wiki page of wicket-contrib-javaee there was no information about this dependency.

Changing an image in a list on the fly...

2008-04-13 Thread Jason Austin
Hi. I have a situation where I want to update the source of an img tag on the fly. I have one of three possible statuses for a given task and I want a red, green or yellow light to appear beside each item in the list to indicate if the task is overdue or getting close to being overdue. I've