Page 1 of 1

Updating a single Data Grid cell

Posted: Wed Dec 04, 2013 1:20 am
by townsend
I need to update 1 field in a Data Grid. This code works:

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
But it seems a little inefficient, removing and replacing the whole line.
Can I update that one cell directly with one line of code?

Re: Updating a single Data Grid cell

Posted: Wed Dec 04, 2013 12:39 pm
by Klaus
Hi townsend,
townsend wrote:Can I update that one cell directly with one line of code?
No, your script is the only solution.


Best

Klaus