$("#Grid").ejGrid({ dataSource: [], columns: [ { headerText: "", width: 30, commands: [ { type: ej.Grid.UnboundType.Edit, buttonOptions: { contentType: "imageonly", prefixIcon: "e-icon e-edit" } } ] }, ... ], editSettings: { allowAdding: true, allowEditing: true, editMode: ej.Grid.EditMode.InlineForm }, toolbarSettings: { showToolbar: true, toolbarItems: [ej.Grid.ToolBarItems.Add] } }); |