|
|
RowSelectionListener
/**
* Event listener interface for table row selection events.
*/
public interface RowSelectionListener extends EventListener {
/**
* Fired when the currently selected row in the table changes.
*
* @param sender
* the AdvancedTable widget sending the event
* @param row
* the row identifier (primary key) of the row being selected
*/
void onRowSelected(AdvancedTable sender, String rowId);
}
Sign in to add a comment

Probably it would be good idea to pass TableColum? to onRowSelected as well. Usually it is helpful to be able to program different reaction for different columns. (I changed it this way for my project, works well)