Hi,
what is
Using this in the GridEnterNewRowSample i.e.
returns this:
where I expected to see some actual grid data...
Regards,
fatzopilot
FF 5.01 devMode, SGWT latest nightly 08/11/2011, GTW 2.3
what is
Code:
ListGrid.getDataAsRecordList() supposed to deliver?
Code:
... countryGrid.setListEndEditAction(RowEndEditAction.NEXT); countryGrid.fetchData(); System.out.println("Records after DS construction"); RecordList list = countryGrid.getDataAsRecordList(); for(int x = 0; x < list.getLength(); x++){ Record record = list.get(x); System.out.println(x+": "+Arrays.toString(record.getAttributes())); } System.out.println("After record printout"); canvas.addChild(countryGrid); ...
Code:
Records after DS construction 0: [] 1: [] 2: [] ... 999:[] After record printout
Regards,
fatzopilot
FF 5.01 devMode, SGWT latest nightly 08/11/2011, GTW 2.3
Comment