Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languageruby
isc.ListGrid.create({
    "ID": "suppyItem",
    "width": 700,
    "height": 224, 
    "alternateRecordStyles": true,
    "dataSource": suppyItem,
    "showFilterEditor": true,
    "autoFetchData": true,
    "dataPageSize": 20
});

Please note:, Grid filters have also been enabled with showFilterEditor:true. This allows for easier testing later. Also note that the dataPageSize has been set to 20, to show pagination working.

...