3.2.0

Cell references and updates

Hi,

I am playing with streaming data into a grid. I have specific column and row names and would like to know if I can reference cells by row/col name.

I then, based on that reference name, would like to update the value of a cell.

Is any of this possible?

Many thanks,

G
Gurok
April 29,
You cannot access row/col by label text, but you can specify custom row/col ID (which I believe you mean anyway):

http://www.activewidgets.com/messages/177-10.htm

Then you have to update the item in your data array:

myData[i][j] = newValue;

and refresh a single cell:

grid.getRowTemplate(i).getItemTemplate(j).refresh();
Alex (ActiveWidgets)
April 29,

This topic is archived.

See also:


Back to support forum