> ProUI is up again for whoever wants to purchase it.
awsome thanks !
Quick question, is it possible to set the gridview data to an array, instead of a json.data file?
Do you mean the Construct array object ?
GridView only accepts a JSON array of objects, as data. So you need to convert your array to a JSON array of objects.
for example :
[1,2,3] should be [{"key":1},{"key":2},{"key":3}]