Search found 2 matches

by Hex
Thu Jan 02, 2014 11:37 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Data grid not updating?
Replies: 2
Views: 1452

Re: Data grid not updating?

Oh I see, that makes sense! Thanks for the help!
by Hex
Thu Jan 02, 2014 10:18 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Data grid not updating?
Replies: 2
Views: 1452

Data grid not updating?

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.

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 ...