Hi,
When I click a checkbox I want to chage the text of a cell. e.g. if I check a cell with the rowId of 1 and a cellInd of 2 I want to change the text of rowId 1 and cellInd of 1 from active to paused. What is the api fuction to change the content to the cell?
e.g. mygrid.setContent(1,1) = “Paused” … an API of this type…
Thanks
To set new cell’s value you can use setValue(“new value”) method:
mygrid.cellById(rowId,cellIndex).setValue(“newValue”);
More information about grid cell’s API you can find here dhtmlx.com/docs/products/dhtmlxG … excellsapi