Icon GetRows Method

function GetRows: String

Available In: Visual Client Applications

Use this method to retrieve the rows of an un-bound grid as a JSON string. The JSON is formatted as follows:

{   "rows": [
{ "GridColumn1": "Test 1", "GridColumn2": "100", "GridColumn3": "" }, 
{ "GridColumn1": "Test 2", "GridColumn2": "200", "GridColumn3": "" }, 
{ "GridColumn1": "Test 3", "GridColumn2": "300", "GridColumn3": "" }
] }
Image