wicket 6 resources

2012-05-18 Thread kamiseq
hej, I tried to look for this and I ve found some old topics but they were related to older version of wicket than 6. I m looking for 2 things 1] I would like to get validator message with all parameters. for example lets take required message I can get it like this: new StringResourceModel("Requ

Re: Full month calendar

2012-05-18 Thread Sandor Feher
Ok. I think I found a clue. I use wicket 1.5.6 but I tried wicket-fullcalendar-core 1.2.1 from maven repo which is for wicket 1.4 as I suspect. I compiled 1.3.0-SNAPSHOT and added my project. Now it works fine :). I really appreciate if 1.3.x will be available in maven repo. This would make my life

Re: WICKET-2056 broke DatePicker in ModalWindow in 1.4.16

2012-05-18 Thread Gabriel Landon
The ticket is here : https://issues.apache.org/jira/browse/WICKET-3579 But they won't fixed it as there is a workaround. For your component you can override the CSS with : "overflow:hidden" -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/WICKET-2056-broke-DatePicker-i

Re: Full month calendar

2012-05-18 Thread Sandor Feher
There is no doubt if it works. I just wanted to shorten my learning curve :). So I will have another try. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Full-month-calendar-tp4642735p4644871.html Sent from the Users forum mailing list archive at Nabble.com. -

Re: Full month calendar

2012-05-18 Thread Igor Vaynberg
we use this in production and it works fine. just tried wicket-fullcalendar-examples with both eclipse and mvn jetty:run which both worked fine as well... -igor On Fri, May 18, 2012 at 5:46 AM, Sandor Feher wrote: > Hi, > > The example Igor mentioned is nice but I'm still struggling with that.

Re: Full month calendar

2012-05-18 Thread Fernando Wermus
you can see ehour wicket app which has an interesting calendar. It is into the app. Fernando Wermus. www.linkedin.com/in/fernandowermus On Fri, May 18, 2012 at 9:46 AM, Sandor Feher wrote: > Hi, > > The example Igor mentioned is nice but I'm still struggling with that. I > have copy-pasted

Re: Single page wicket app

2012-05-18 Thread Martin Grigorov
On Fri, May 18, 2012 at 4:12 PM, armhold wrote: > Ajax calls do save the page state. I think the real issue for you is > that if users have the page open but idle for a long time (longer than > session expiration... 30 mins?) the Ajax links won't work for them > when they decide to start using the

Re: Single page wicket app

2012-05-18 Thread armhold
Ajax calls do save the page state. I think the real issue for you is that if users have the page open but idle for a long time (longer than session expiration... 30 mins?) the Ajax links won't work for them when they decide to start using the page again. You could perhaps use a AjaxSelfUpdatingTim

Re: Full month calendar

2012-05-18 Thread Sandor Feher
Hi, The example Igor mentioned is nice but I'm still struggling with that. I have copy-pasted the code from HomePage but it throws me java.lang.ArrayStoreException: net.ftlines.wicket.fullcalendar.callback.GetEventsCallback at net.ftlines.wicket.fullcalendar.FullCalendar.setupCallbacks(FullC

Re: Get JSESSIONID in Wicket

2012-05-18 Thread Martin A
Thanks Vineet! On Fri, May 18, 2012 at 1:38 PM, vineet semwal wrote: > or just Session#getId() > > On Fri, May 18, 2012 at 4:00 PM, vineet semwal > wrote: > > i made a little typo so correcting it > > ISessionStore#getSessionId(request, boolean); > > > > On Fri, May 18, 2012 at 3:52 PM, vineet s

Re: Get JSESSIONID in Wicket

2012-05-18 Thread vineet semwal
or just Session#getId() On Fri, May 18, 2012 at 4:00 PM, vineet semwal wrote: > i made a little typo so correcting it > ISessionStore#getSessionId(request, boolean); > > On Fri, May 18, 2012 at 3:52 PM, vineet semwal > wrote: >> ISessionStore()#getSessionId(request, boolean); >> >> On Fri, May 1

Re: Get JSESSIONID in Wicket

2012-05-18 Thread vineet semwal
i made a little typo so correcting it ISessionStore#getSessionId(request, boolean); On Fri, May 18, 2012 at 3:52 PM, vineet semwal wrote: > ISessionStore()#getSessionId(request, boolean); > > On Fri, May 18, 2012 at 3:31 PM, Martin A wrote: >> Hello guys, >> I've trying to find a way to get the

Re: Get JSESSIONID in Wicket

2012-05-18 Thread vineet semwal
ISessionStore()#getSessionId(request, boolean); On Fri, May 18, 2012 at 3:31 PM, Martin A wrote: > Hello guys, > I've trying to find a way to get the JSESSION id for the requests in > Wicket, but couldn't find a way to. Would you give me some hints, please? > > Best regards, > Martin -- thank

Get JSESSIONID in Wicket

2012-05-18 Thread Martin A
Hello guys, I've trying to find a way to get the JSESSION id for the requests in Wicket, but couldn't find a way to. Would you give me some hints, please? Best regards, Martin