I have a DataTable and I want to add a clickable checkbox to the rows. I've tried adding an AbstractColumn and a plain CheckBox in the cellItem along with its AjaxEventBehavior "onclick", but the rendering process complains that
Component [cell] (path = [51:table:body:rows:1:cells:5:cell]) must be applied to a tag of type [input], not: '<div wicket:id="cell">' (line 0, column 0) I see there exists AjaxEditableLabel in wicket extensions, but no AjaxEditableCheck... I guess the problem is that DataTable assumes to output strings of text, not checkboxes... so any AjaxEditableFoo must comply with the underlying model, e.g. strings, not booleans... anyway, how do I add a clickable checkbox in populateItem of my AbstractColumn? --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
