Shouldn't ListGrid.addData() change the number of data records?
// listGrid.getRecords().length = 0
listGrid.addData(listGridRecord);
// listGrid.getRecords().length = 0 still
Shouldn't the number of listGrid records increase after I add a record? What am I missing here?
// listGrid.getRecords().length = 0
listGrid.addData(listGridRecord);
// listGrid.getRecords().length = 0 still
Shouldn't the number of listGrid records increase after I add a record? What am I missing here?