Re: wicket 6348 / now missing parameter

2017-06-27 Thread Sven Meier
Hi, it works similar to AjaxFormComponentUpdatingBehavior: new CheckBox("id", model) .add(new FormComponentUpdatingBehavior() { protected void onUpdate() { Boolean value = ((CheckBox)getFormComponent()).getModelObject() } }); #getFormComponent() doesn't know the generic type, so regretfully you

wicket 6348 / now missing parameter

2017-06-26 Thread Korbinian Bachl
Hi, in https://issues.apache.org/jira/browse/WICKET-6348 the way how to react on onSelectionChanged(Object object) got changed to now a usage of // Wicket 7.x new CheckBox("id", model) { protected boolean wantOnSelectionChangedNotifications() { return true; }