Re: DOM element not found issue - Ajax response

2014-04-04 Thread Ernesto Reinaldo Barreiro
Hi, Are you blocking the UI during AJAX requests? I have seen similar weird things happening because: 1- One AJAX request (R1) is executing. 2- UI is not blocked. User click on on something. A second AJAX (R2) request is queue: as far as I understand AJAX request are queued by channel (please,

Re: DOM element not found issue - Ajax response

2014-04-04 Thread Ernesto Reinaldo Barreiro
on 4- R1 is sent R2 is sent On Fri, Apr 4, 2014 at 8:33 AM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Hi, Are you blocking the UI during AJAX requests? I have seen similar weird things happening because: 1- One AJAX request (R1) is executing. 2- UI is not blocked. User

Re: DOM element not found issue - Ajax response

2014-04-04 Thread Martin Grigorov
On Fri, Apr 4, 2014 at 8:33 AM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Hi, Are you blocking the UI during AJAX requests? I have seen similar weird things happening because: 1- One AJAX request (R1) is executing. 2- UI is not blocked. User click on on something. A second AJAX

FormComponentPanel.validate() API Doc question

2014-04-04 Thread lucast
Dear forum, I've written a FormComponentPanel in which one can select a date range and during validation I want to check that start date is not in the past or that end date is before start date. I have decided to do these checks by overriding FormComponentPanel.validate(). The

Re: FormComponentPanel.validate() API Doc question

2014-04-04 Thread Sven Meier
Hi Lucas, #validate() is called by the Form when it processes a request. Usually you don't call this method by yourself - that's all. Overriding #validate() is OK. Note that a FormComponentPanel can have validators too, so it might be simpler to just add one for your date checks. Regards

autocomplete + ajaxformcomponentupdate - mouseselection not working after error

2014-04-04 Thread haiko
Hi wicketusers, I have an autocomplete textfield with an AjaxFormComponentUpdatingBehavior attached for the 'change' event. After an error on the input the update is handled in the onError method -- ( some pseudocode ) autocompletefield.add(new AjaxFormComponentUpdatingBehavior(change) {

Re: autocomplete + ajaxformcomponentupdate - mouseselection not working after error

2014-04-04 Thread Martin Grigorov
Hi, Try to debug it. Open wicket-autocomplete.js in the browser dev tools and see what happens. Martin Grigorov Wicket Training and Consulting On Fri, Apr 4, 2014 at 2:12 PM, ha...@dds.nl wrote: Hi wicketusers, I have an autocomplete textfield with an AjaxFormComponentUpdatingBehavior

Could you tell me the 6.14.0 wicket examples zip download url available today.

2014-04-04 Thread 003210
Hi, I'v been told that for Wicket v1.2.4 examples, users can download by url 'http : //wicket.sourceforge.net/Download.html'. But today the url 'http : //wicket.sourceforge.net/Download.html' is not available. Could you tell me the 6.14.0 wicket examples zip download url available today.

Re: Could you tell me the 6.14.0 wicket examples zip download url available today.

2014-04-04 Thread Martin Grigorov
Hi, http://central.maven.org/maven2/org/apache/wicket/wicket-examples/6.14.0/ Martin Grigorov Wicket Training and Consulting On Fri, Apr 4, 2014 at 4:38 AM, 003210 sunya...@raisecom.com wrote: Hi, I'v been told that for Wicket v1.2.4 examples, users can download by url 'http :

Wicket CDI 1.1

2014-04-04 Thread David Beer
Hi All I am in the process of moving my application to JavaEE7 and CDI 1.1. Things are going well all except for some CDI values. I have an @Stateless Session bean used for my DAO which I then Inject into various classes. The issue I have is that some of the classes don't get the reference