Icon LoadRows Method

procedure LoadRows(const RowData: String; Append: Boolean=False)

Available In: Visual Client Applications

Use this method to load the rows of an un-bound grid from a JSON string. The JSON should be formatted as follows:

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