Re: Errors in data view , req for help to fix the error in code

2014-05-26 Thread Francois Meillet
The DemoBean needs to implement the Serializable interface. François Meillet Formation Wicket - Développement Wicket Le 27 mai 2014 à 07:54, kumar ramanathan a écrit : > Hi Friends , > > Am trying to execute a wicket program to accomplish the below task, > > a. a submit button is in place

Errors in data view , req for help to fix the error in code

2014-05-26 Thread kumar ramanathan
Hi Friends , Am trying to execute a wicket program to accomplish the below task, a. a submit button is in place in a form b. when I click that i have to show the ouput in data view of the same page My codes are below and need your help to fix the erros and get the ouput *Demoapplication.java*

Re: Is it possible to repaint wicket component via javascript?

2014-05-26 Thread Martin Grigorov
Hi, You can do something like: theComponent.add(new AjaxEventBehavior("repaint") { public void onEvent(ART art) {art.add(getComponent())} }) the JS would be: $(selectorToTheTable).triggerHandler("repaint"); Martin Grigorov Wicket Training and Consulting On Mon, May 26, 2014 at 7:44 PM, Noven

Is it possible to repaint wicket component via javascript?

2014-05-26 Thread Noven
Hi all, Just want to ask if we can update wicket component via javascript or not. The case here is to repaint a datatable Shadowbox.init({         handleOversize: "drag",         onClose : function () {                 //repaint the component here          } });  Please advise. Thank you.