I have a table of cells in GWT with columns, there are three rows in each column, I want the first row to be selected by default when the application starts
something like that
mycelltable.setselectedrow(index);
Is it possible?
thanks
her code
display.getShortListedCVsBasedOnJob().getResumeDescriptionColumn().setFieldUpdater( new FieldUpdater<CandidateSummary, String>() { public void update(int index, CandidateSummary object, String value) { fetchResume(cvSelected, shortListedFlag); } });
This fetchResume () method calls, but only when I select the cell of this column, I want to call this fetchResume () method as my application launches, i.e. I want the 1st cell of the column to be selected by the Default method.
source share