Re: wicket-bootstrap NoSuchMethodError: Url.parse

2013-10-22 Thread Martin Grigorov
Hi, Make sure you don't have another version of Wicket in the classpath. Since you use Maven you can check with: mvn dependency:tree The missing method is in Wicket 6.x: https://github.com/apache/wicket/blob/master/wicket-request/src/main/java/org/apache/wicket/request/Url.java?source=c#L203

Re: unwanted DefaultPageManagerProvider

2013-10-22 Thread Sven Meier
Hi Uwe, currently there's no way to change the PageManager once it's fetched in Application#internalGetPageManager(). Do you have a stacktrace for the code triggering Application.getPageManagerProvider().get() ? Besides devutils I don't see any call to this from Wicket. Regards Sven On

AW: set session-timeout

2013-10-22 Thread Christoph.Manig
If I do this in my WicketApplication class, in the init() method I get java.lang.reflect.UndeclaredThrowableException. But if I add this to my base page it works. Is there any possibility to do this in the WicketApplication class? Mit freundlichen Grüßen Christoph Manig Systems Engineer

jquery.ui.calendar.Calendar disable next button

2013-10-22 Thread Selom
Hello; Need your help again . I 'd like to disable the next buton when moving the calendar one step forward at my specified date let say 31 december. I there any *option * to do that ? Thanks in advance. -- View this message in context:

Re: jquery.ui.calendar.Calendar disable next button

2013-10-22 Thread Sebastien
Hi, As far as I see, there is no such options. (I would had expected a 'minDate' options, but seems to not be the case...). The only way I see, is to add a javascript statement which will display/hide the button. Actually, these are not real buttons (but spans, so it is harder to disable these

Re: AW: set session-timeout

2013-10-22 Thread Joachim Schrod
On 10/22/13 10:34, christoph.ma...@t-systems.com wrote: If I do this in my WicketApplication class, in the init() method I get java.lang.reflect.UndeclaredThrowableException. But if I add this to my base page it works. Is there any possibility to do this in the WicketApplication class? You

Re: AW: set session-timeout

2013-10-22 Thread Martin Grigorov
On Tue, Oct 22, 2013 at 4:27 PM, Joachim Schrod jsch...@acm.org wrote: On 10/22/13 10:34, christoph.ma...@t-systems.com wrote: If I do this in my WicketApplication class, in the init() method I get java.lang.reflect.UndeclaredThrowableException. But if I add this to my base page it works.

Re: How Does Checkbox Know To Store To My Data Object

2013-10-22 Thread dhongyt
I think its an object in my Model? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-Does-Checkbox-Know-To-Store-To-My-Data-Object-tp4661879p4661925.html Sent from the Users forum mailing list archive at Nabble.com.

AbstractColumn get row object

2013-10-22 Thread cosmindumy
Hello, Maybe is newbie question but I couldn't figure out how to get the object of a row in a data table in a AbstractColumn. I want to add a edit button as last cell in the row. Here is my code: ListIColumnlt;Person createTableColumns() { ... columns.add( new EditColumn (...)) } May I get the

Re: AbstractColumn get row object

2013-10-22 Thread Sven Meier
Your column implementation gets a reference to the rowModel in #populateItem(). Sven On 10/22/2013 04:47 PM, cosmindumy wrote: Hello, Maybe is newbie question but I couldn't figure out how to get the object of a row in a data table in a AbstractColumn. I want to add a edit button as last cell

Re: AbstractColumn get row object

2013-10-22 Thread meduolis
If you are using DataTable a a repeater, this thread might help for you: http://stackoverflow.com/questions/10796342/making-entire-row-of-a-wicket-datable-clickable http://stackoverflow.com/questions/10796342/making-entire-row-of-a-wicket-datable-clickable It lets you to make all row

Re: How Does Checkbox Know To Store To My Data Object

2013-10-22 Thread meduolis
Try to add something like this onSubmit: System.out.println(It's up to date compiled code running here) and check console if you get this output :). I think you need to recompile your sources and application. Because this code snipped does nothing. I might be wrong, we all do mistakes :) --

Re: AW: set session-timeout

2013-10-22 Thread Joachim Schrod
On 10/22/13 15:32, Martin Grigorov wrote: On Tue, Oct 22, 2013 at 4:27 PM, Joachim Schrod jsch...@acm.org wrote: On 10/22/13 10:34, christoph.ma...@t-systems.com wrote: If I do this in my WicketApplication class, in the init() method I get java.lang.reflect.UndeclaredThrowableException.

Re: wicket-bootstrap NoSuchMethodError: Url.parse

2013-10-22 Thread meduolis
Hi, Martin, As we can see wicket-request.jar is different version then other wicket modules. So, I have downloaded wicket-request.jar of 6.11.0 version manually and replaced it in application AND IT WORKED :). So, I really do not know, why bootstrap download wrong version. Maybe I need to

Re: jquery.ui.calendar.Calendar disable next button [SOLVED]

2013-10-22 Thread Selom
I did not see the 2 methods onViewRender and isViewRenderEnabled but I saw *isViewDisplayEnabled *and *onViewDisplay *in the ICalendarListener. I override them with the your code above. wonderful . It works nicely ... Thank you again . -- View this message in context:

Re: AW: set session-timeout

2013-10-22 Thread Martin Grigorov
On Wed, Oct 23, 2013 at 2:36 AM, Joachim Schrod jsch...@acm.org wrote: On 10/22/13 15:32, Martin Grigorov wrote: On Tue, Oct 22, 2013 at 4:27 PM, Joachim Schrod jsch...@acm.org wrote: On 10/22/13 10:34, christoph.ma...@t-systems.com wrote: If I do this in my WicketApplication class, in