Apache Wicket IE 10/11 performance issue

2014-08-12 Thread Evgeny Ryzhkov
Good day, In our project we have a page with a table with a lot of rows (~100...1000). The table is built using Wicket components and there are some places where Wicket's Javascript code is executed when onReadyStateChange event is fired. It leads to performance degradation on IE 10/11 when the

Re: Testing JS

2014-08-12 Thread Martin Grigorov
Hi, For Wicket's JS we use QUnit. https://github.com/apache/wicket/tree/master/testing/wicket-js-tests is a Maven module responsible to execute the unit tests. It uses https://github.com/eirslett/frontend-maven-plugin to download Node.js and to execute Grunt. See

Re: Apache Wicket IE 10/11 performance issue

2014-08-12 Thread Ernesto Reinaldo Barreiro
What do you have on table rows? AJAX links? On Tue, Aug 12, 2014 at 9:45 AM, Evgeny Ryzhkov evgeny.ryzh...@gmail.com wrote: Good day, In our project we have a page with a table with a lot of rows (~100...1000). The table is built using Wicket components and there are some places where

Re: Apache Wicket IE 10/11 performance issue

2014-08-12 Thread Martin Grigorov
Hi, There was a problem with jQuery(selector).text() method in older versions of Wicket 6.x but it has been fixed by using plain DOM APIs. If you can find what exactly causes the slowness then we can try to optimize Wicket JS code even more. Martin Grigorov Wicket Training and Consulting

Re: Testing JS

2014-08-12 Thread Pierre Goupil
Wow, that makes a few interesting things! Thanks! :-) Pierre On Tue, Aug 12, 2014 at 9:47 AM, Martin Grigorov mgrigo...@apache.org wrote: Hi, For Wicket's JS we use QUnit. https://github.com/apache/wicket/tree/master/testing/wicket-js-tests is a Maven module responsible to execute the

Re: Form.findSubmittingButton throws exceptions

2014-08-12 Thread Martin Grigorov
https://issues.apache.org/jira/browse/WICKET-5672 Improved in Wicket 7.x only. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Thu, Aug 7, 2014 at 3:34 PM, Martin Grigorov mgrigo...@apache.org wrote: I think that it should return the found submitter. If the

Re: java.lang.IllegalArgumentException: Argument 'name' may not be null or empty.

2014-08-12 Thread Martin Grigorov
https://issues.apache.org/jira/browse/WICKET-5673 Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Mon, Aug 11, 2014 at 9:46 AM, Martin Grigorov mgrigo...@apache.org wrote: Hi, I have no idea. If you find a use case where Wicket generates such broken urls

Re: Form.findSubmittingButton throws exceptions

2014-08-12 Thread Jack Berg
Thank you! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Form-findSubmittingButton-throws-exceptions-tp4666910p4667030.html Sent from the Users forum mailing list archive at Nabble.com. - To

AjaxEventBehavior and arguments

2014-08-12 Thread Christian Schröter
Hey everyone, I'm having diffculties to find a solution for a common issue, at least in my opinion ^^ Hopefully someone can help me. I'm using a third party JS libary. This lib fires custom events. $('#id').on('customEvent', function(event, data) {...}); In Wicket I would like to add a

Add Ajax update behavior in Loadable detachable component

2014-08-12 Thread Neha1228
Hi, The scenario is that i have a label STATE, which has a loadable detachable model. Now when the content(text) of this label gets updated i want to update another Label Performed By . final IModelString performedByUserModel = Model.of(NA); final Label performedByUser = new