|
toolbarSettings: { showToolbar: false, toolbarItems: [ej.Grid.ToolBarItems.Add, ej.Grid.ToolBarItems.Edit, ej.Grid.ToolBarItems.Delete, ej.Grid.ToolBarItems.Update, ej.Grid.ToolBarItems.Cancel] },
allowScrolling: true,
allowCellMerging: true,
mergeCellInfo: function (args) {
if (args.data.Events == "Flood") {
if (args.column.field == "Apr")
args.colMerge(3);
}
}
});
}); |
|
|