How to select a cell in the Grid?

Hello,friend!
I want to change a cell’s value in the Grid,how do?

Hello,

You may get data object by item method, change the necessary property and then call refresh method for this data object:

[code]dhx.ui({
id:“mygrid”,
view:“grid”,

    ...

})

$$(“mygrid”).item(itemId).fieldId = “new value”;
$$(“mygrid”).refresh(itemId);[/code]

Hello,Alexandra

I knew this way,but I can’t let the user know which cell has been selected! :blush: