|
this.childGrid = {
pageSettings: { pageSize: 6, pageCount: 5 },
columns: [
. . . . . .
{ field: "Freight", headerText: "Freight", width: 120 },
{ field: "ShipName", headerText: "Ship Name", width: 150 },
{
headerText: "Commands",
width: 120,
commands: [
{
type: "Edit",
buttonOption: { cssClass: "e-flat", iconCss: "e-edit e-icons" }
},
{
type: "Delete",
buttonOption: { cssClass: "e-flat", iconCss: "e-delete e-icons" }
},
{
type: "Save",
buttonOption: { cssClass: "e-flat", iconCss: "e-update e-icons" }
},
{
type: "Cancel",
buttonOption: {
cssClass: "e-flat",
iconCss: "e-cancel-icon e-icons"
}
}
]
}
] |