Data grid not updating?
Posted: Thu Jan 02, 2014 10:18 pm
Hey all, I am trying to make it so when you push a button it updates the data grid with text from a text field.
This just clears the data in its place instead. Any thoughts on how to fix that? Thanks!
Code: Select all
on mouseUp
put the dgDataOfLine[2] of group "DataGrid 1" into theArray["R"]
put the text of field "Rfld" into theArray["R"]
set the dgDataOfLine[2] of group "DataGrid 1" to theArray["R"]
end mouseUp