Versions Compared

Key

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

...

Code Block
themeEclipse
languagejavascript
titleus.js
isc.ListGrid.create({
    ID: "supplyItemGridsupplyItem",
    width: 700, height: 224, alternateRecordStyles: true,
    dataSource: supplyItem,
    showFilterEditor: true,
    autoFetchData:true,
    dataPageSize:20,
    canEdit:true,
    canRemoveRecords:true
});

...

Code Block
languagejavascript
titleui.js
isc.IButton.create({
    top: 250,
    title: "Edit New",
    click: "supplyItemGridsupplyItem.startEditingNew()"
});

At this point, all four operations are implemented (add, update, remove, fetch). However please note these are just plain samples,and do not contain anything other than basic type error validation.

...