I'm sorry but I know I have seen where you folks have given a link to how to refresh the data in a individual cell and I can't find it. Can you point me in the right direction? I need to change the value to an item in one array and then need to sync that value to a different array. Refreshing the entire grid is a little too much. Thank you
I didn't see any information about update Row in the documentation and I have no idea what update cell is trying to tell me.
Can you give a simple line of code for both updating a cell and a row?
Thank you
Change : function(args) {
//grid – Grid instance.
grid.updateRow(index, data); //index – row index of the row you want to change
//data – data you want to update to the row
} |
Change : function(args) {
//grid – Grid instance.
grid.updateCell(index, "ShipCity", value); //index – row index of the row you want to change
//value – value you want to update to the cell
// ShipCity – Grid column of the cell
} |