I have a ListGrid. I add the starting rows with
sampleGrid.setData (records);
I add a new row to it by calling
sampleGrid.startEditingNew ();
When I call sampleGrid.getRecords (); I get an array holding the records added w/ setData , and none of the records added with startEditingNew. If I call
sampleGrid.getDataAsRecordList ().getLength ();
I get the number of records added with setData.
TIA,
Greg
sampleGrid.setData (records);
I add a new row to it by calling
sampleGrid.startEditingNew ();
When I call sampleGrid.getRecords (); I get an array holding the records added w/ setData , and none of the records added with startEditingNew. If I call
sampleGrid.getDataAsRecordList ().getLength ();
I get the number of records added with setData.
TIA,
Greg
Comment