[Wicket-user] JS effects on DataView rows

2007-02-07 Thread Alexis
Let me explain a little problem i came across lately. I have a DataView containing rows, each row contains an AjaxCheckbox. I have also AjaxLinks that perform actions on selected rows. Everything works fine, to spice it up I want to add some js effects on checked rows when an AjaxLink is

Re: [Wicket-user] JS effects on DataView rows

2007-02-07 Thread Igor Vaynberg
you can give dataview IItemReuseStrategy so new row items are not generated every request. so something like: dataview.setItemReuseStrategy( ReuseIfModelsEqualStrategy.getInstance()); then override hashcode/equals on the model class that is passed to dataview.populateitem and if the same row