How to handle row selection?
If you want to do any action on row selection you should implement the org.gwt.advanced.client.ui.SelectRowListener interface and using the EditableGrid.addSelectRowListener() add it to the grid. public class MyRowSelectionListener implements SelectRowListener { public void onSelect(EditableGrid grid,int row) { Window.alert(“Row number ” + row); } } This listener displays the alert window every time when a new row selected.