What's new? | Help | Directory | Sign in
Google
gwt-advanced-table
GWT Advanced Table - GWT table widget supporting paging, sorting and filtering
  
  
  
  
    
Search
for
Updated Sep 05, 2007 by svetlin.nakov
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);
}

Comment by ro...@softaria.com, Dec 06, 2007

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)


Sign in to add a comment