pgData

Typeproperty
Dictionarywidget.polygrid
LibraryPolyGrid
Syntax
set the pgData of widget to <DataArray>
get the pgData of widget
Associationscom.livecode.widget.polygrid
Summary

Get or set the data array that the PolyGrid will display.

Example
set the pgData of widget"PolyGrid" to tArray
Description

Use the pgData property to get or set the array of data that the Polygrid will display. The first dimension of the array uses numeric keys, and the value of each is an array in wich each key corresponds to a column name.

put "Hi" into tArray[1]["message"]
put "Bye" into tArray[2]["message"]
set the pgData of widget "PolyGrid" to tArray

Tagstable,data