Re: Link url in ListView on ajaxed panel not resolving properly

2012-11-04 Thread Simon B
Hi Sven, Thanks for the reply. I have just tried with wicket version 1.5.8 and I get the same symtoms i.e. bookmarkable/ string in the url of the links in the updated ajax results, and also the same exeption: Any other suggestions? Let me know if you need any more information. Cheers

Re: format value missing in ConversionException thrown by wicket-datetime's DateConverter

2012-11-04 Thread Simon B
Hi Benedikt Should this be posted on the Forum for Wicket Core developers forum? Simon -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/format-value-missing-in-ConversionException-thrown-by-wicket-datetime-s-DateConverter-tp4653598p4653603.html Sent from the Users

Re: Link url in ListView on ajaxed panel not resolving properly

2012-11-04 Thread Sven Meier
Thanks for testing with 1.5.8. Please create a Jira issue with a quickstart demonstrating the problem. Sven On 11/04/2012 10:09 AM, Simon B wrote: Hi Sven, Thanks for the reply. I have just tried with wicket version 1.5.8 and I get the same symtoms i.e. bookmarkable/ string in the url of

Re: Handle feedback-Messages with a custom validation framework

2012-11-04 Thread delta458
I already got it working... with the following code: /... //Textfields or Form Components GO HERE... @Override public void onValidateModelObjects() { ValidationProcess vp = new ValidationProcess(); vp.validate(Rules.js, r); msg = ;

how to submit page on single click when text fields are using onchange event

2012-11-04 Thread _kl_
Hi, I have used onchange event for my text fields to get the updated value. After updating the text fields if the user tries to save the changes by clicking on the ajax submit link he has to double click. Reason: the on change event internally uses on blur so when the link is clicked first it

Re: format value missing in ConversionException thrown by wicket-datetime's DateConverter

2012-11-04 Thread Martin Grigorov
Hi, We follow users@ mailing list too :-) Since 1) DateConverter is not final 2) the related methods in it are public, non-final 3) it is possible to register custom converter for Date.class in ConverterLocator I think you should be able to do what you need. Are there any breaks ? On Sun, Nov

Re: dojo widgets

2012-11-04 Thread Martin Grigorov
Hi, Check https://gitorious.org/wicket-dojo Also you can check how jqGrid is integrated with Wicket at http://code.google.com/p/wijqgrid/ On Sun, Nov 4, 2012 at 5:05 AM, fachhoch fachh...@gmail.com wrote: I want to have dojo grid widget in my page are there any examples of using dojo grid

Re: how to submit page on single click when text fields are using onchange event

2012-11-04 Thread Martin Grigorov
Hi, http://jsfiddle.net/qRKm5/ As you can see both 'change' and 'click' events are actually fired. On Mon, Nov 5, 2012 at 8:29 AM, _kl_ kriti@igate.com wrote: Hi, I have used onchange event for my text fields to get the updated value. After updating the text fields if the user tries to