As the last resort - the data can be set directly:
grid.cells(i,j).cell.innerHTML=value;
grid.cells(i,j).setFont("Tahoma-bold-13px"); grid.cells(i,j).setFont("Tahoma-12pt");
Basically all style related properties can be set directly as follows:
grid.cells(i,j).cell.style[name]=value;
(1) - the returned data is not included into the settings assigned indirectly by css classes or inherited from top containers.
obj.wasChanged() - returns “true” if a cell was changed.
Changed flag is set automatically after the cell was changed by user actions. The flag will not be set if the value was changed by API.
The following code should be used to set the flag manually:
grid.cell(i,j).cell.wasChanged=true;
obj.setDisabled(mode) - enables|disables the cell editor (checkboxes and radio buttons are rendered in the disabled state).