Load Grid(Alex question for you)
Hi Alex...
I have a problem with grid loading. I am loading data with dataset from vb.net. after calculating modified data i am not able to reassign data to grid. I tried various approuches. but every time i failed. Please help me.
dSet is array of data
First approuch :
obj.setDataProperty("text",function(i,j){return dSet[i][j]});
obj.setRowProperty("values",dSet);
obj.refresh();
Secound approuch :
obj.clearRowModel();
obj.setColumnCount(20);
obj.setRowCount(dSet.length);
obj.setCellText(dSet);
obj.refresh();
Third approuch :
obj.setRowCount(dSet.length);
obj.setProperty("selection/index",0);
aw_cells= dSet;
obj.refresh();
Fourth approuch :
obj.setCellData(dSet);
obj.refresh();
Fifth approuch :
getCalGridData(dSet);
obj.refresh();
I didnt find solution by these approuches. Please help
I have a problem with grid loading. I am loading data with dataset from vb.net. after calculating modified data i am not able to reassign data to grid. I tried various approuches. but every time i failed. Please help me.
dSet is array of data
First approuch :
obj.setDataProperty("text",function(i,j){return dSet[i][j]});
obj.setRowProperty("values",dSet);
obj.refresh();
Secound approuch :
obj.clearRowModel();
obj.setColumnCount(20);
obj.setRowCount(dSet.length);
obj.setCellText(dSet);
obj.refresh();
Third approuch :
obj.setRowCount(dSet.length);
obj.setProperty("selection/index",0);
aw_cells= dSet;
obj.refresh();
Fourth approuch :
obj.setCellData(dSet);
obj.refresh();
Fifth approuch :
getCalGridData(dSet);
obj.refresh();
I didnt find solution by these approuches. Please help
Satyendra Kumar Panasa
September 19,