...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
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 | ||||
---|---|---|---|---|
| ||||
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.
...