Actually is the wicket coders that uses this style in amost every component.
--
View this message in context:
http://www.nabble.com/How-to-remove-a-row-from-DataTable--tp23312849p23315231.html
Sent from the Wicket - User mailing list archive at Nabble.com
ct){
> public void onDelete( AjaxRequestTarget target ){
> // Add table here and show flashmessage
> info( "Row deleted" );
> target.addComponent( feedback );
> target.addComponent( datatable );
> }
> });
> }
> })
xRequestTarget target ){
// Add table here and show flashmessage
info( "Row deleted" );
target.addComponent( feedback );
target.addComponent( datatable );
}
});
}
});
--
View this message in context:
http://www.nabble.com/How-to-remove-a-row
Hey,
I employed AjaxFallbackDefaultDataTable to list contacts.
The last column contains a delete link that I created it this way:
final List columns = new ArrayList();
columns.add(new AbstractColumn(new Model("Delete")) {
public void populateItem(Item cellItem,