3.2.0

Refresh grid with new data stored in JS array

I am trying to refresh the grid with a new set of data stored in a javascript array in order to avoid having to make additional requests to the server.

Is such a thing possible? and if so... does any one have a working example?
Mario
February 8,
I want to Refresh the data grid in the Form
Pradeep
August 26,
What have you tried that doesn't work?
Jim Hunter
August 26,
obj.setRowProperty("count", myData.length);
obj.setStatusProperty("code", ""); 
obj.refresh();
var howManyRows = obj.getRowCount();
if(howManyRows==0)
{
    obj.setStatusProperty("code", "nodata"); 
    obj.refresh();
}
Mobasoft
September 22,

This topic is archived.

See also:


Back to support forum