Updating a single Data Grid cell
Posted: Wed Dec 04, 2013 1:20 am
I need to update 1 field in a Data Grid. This code works:
But it seems a little inefficient, removing and replacing the whole line.
Can I update that one cell directly with one line of code?
Code: Select all
put the dgDataOfLine[1] of group "my.grid" into aTemp
put "13/12/03" into aTemp["Date"]
set the dgDataOfLine[1] of group "my.grid" to aTemp
Can I update that one cell directly with one line of code?