Re: How to remove a row from DataTable?

2009-04-30 Thread Mathias P.W Nilsson
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

Re: How to remove a row from DataTable?

2009-04-30 Thread HHB
ct){ > public void onDelete( AjaxRequestTarget target ){ > // Add table here and show flashmessage > info( "Row deleted" ); > target.addComponent( feedback ); > target.addComponent( datatable ); > } > }); > } > })

Re: How to remove a row from DataTable?

2009-04-30 Thread Mathias P.W Nilsson
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

How to remove a row from DataTable?

2009-04-30 Thread HHB
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,