:: Forum >>

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
Tuesday, February 8, 2005
I want to Refresh the data grid in the Form
Pradeep
Friday, August 26, 2005
What have you tried that doesn't work?
Jim Hunter
Friday, August 26, 2005
obj.setRowProperty("count", myData.length);
obj.setStatusProperty("code", "");
obj.refresh();
var howManyRows = obj.getRowCount();
if(howManyRows==0)
{
    obj.setStatusProperty("code", "nodata");
    obj.refresh();
}
Mobasoft
Thursday, September 22, 2005

This topic is archived.


Back to support forum

Forum search