Re: wicket-jquery-ui DatePicker JS problems

2014-06-23 Thread Lucio Crusca
In data lunedì 23 giugno 2014 14:41:37, Sebastien ha scritto: > Hi Lucio, > > You guessed right, JS libraries are embedded in the jar(s), and attached to > the page as soon as you use a jquery-ui/kendo component. Please check > either: > - the wicket-jquery-ui jars are well deployed. What should

Re: wicket-jquery-ui DatePicker JS problems

2014-06-23 Thread Sebastien
; one: > > http://www.7thweb.net/wicket-jquery-ui/datepicker/DefaultDatePickerPage > > I think I've done everything listed here, adapting things to my needs: > > http://www.7thweb.net/wicket-jquery-ui/ > > but the javascript console is showing this error and the DatePicke

wicket-jquery-ui DatePicker JS problems

2014-06-23 Thread Lucio Crusca
Hi all, I'm trying to add a (kendo?) DatePicker to my form, in other words this one: http://www.7thweb.net/wicket-jquery-ui/datepicker/DefaultDatePickerPage I think I've done everything listed here, adapting things to my needs: http://www.7thweb.net/wicket-jquery-ui/ but the

Re: jquery ui DatePicker

2014-04-17 Thread Dirk Wichmann
Hi, that's it, thanks a lot, sometimes the solution is so near. Cheers Dirk Am 17.04.2014 16:04, schrieb Sebastien: > new DatePicker("mydate", model, "dd.MM.", new > Options("dateFormat", Options.asString("dd.mm.yy"))); -

Re: jquery ui DatePicker

2014-04-17 Thread Patrick Davids
the jquery date pattern as an Option to your DatePicker instance on java-side. Something like this: new Options("dateFormat", Options.asString("dd.mm.") kind regards Patrick Am 17.04.2014 15:48, schrieb Dirk Wichmann: > Hi, > > is's quite frustrating, I

Re: jquery ui DatePicker

2014-04-17 Thread Sebastien
Hi Dirk, If you are referring to wicket-jquery-ui datepicker: the jquery date format option should match the java date format, ie: new DatePicker("mydate", model, "dd.MM.", new Options("dateFormat", Options.asString("dd.mm.yy"))); Hope this helps, Se

jquery ui DatePicker

2014-04-17 Thread Dirk Wichmann
Hi, is's quite frustrating, I use the jquery ui DatePicker for a valid to filed on a user form. Everything seems to be ok, but I want to display that a user don't expire and so I save 31.12. (german date format dd.MM.) in database. Now I try to edit a user and the init of t

Re: Wicket JQuery UI Datepicker

2013-11-17 Thread Sebastien
Hi Dirk, Thank to remind me that I definitely should add a sample for DatePicker's pattern... The Java date pattern differs from the jQuery UI one, so you have to make sure both are matching: For instance: new DatePicker("date", "dd.MM.", new Options("dateFormat", Options.asString("dd.mm.

Wicket JQuery UI Datepicker

2013-11-17 Thread Dirk Wichmann
Hi all, at the Moment I have trouble to configure the DatePicker from JQuery UI. I have included com.googlecode.wicket-jquery-ui Version 6.12.0 The DatePicker is shown in the UI but Date is allways displayed as 11/08/2013 and I get the error "date cannot converted" What is the trick to get it runn