BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
$("#Grid").ejGrid({ dataSource: window.gridData, allowPaging: true, editSettings: { allowEditing: true, allowAdding: true, allowDeleting: true, }, toolbarSettings: { showToolbar: true, toolbarItems: [ej.Grid.ToolBarItems.Add, ej.Grid.ToolBarItems.Edit, ej.Grid.ToolBarItems.Delete, ej.Grid.ToolBarItems.Update, ej.Grid.ToolBarItems.Cancel] }, contextMenuSettings: { enableContextMenu: true, contextMenuItems: [], customContextMenuItems: ["Custom Context"] },//Custom Context menu contextClick: function (args) { if (args.text == " Custom Context ") var rowid = this.selectedRowsIndexes[0];//get the row id var selectedrecordsdata = args.model.selectedRecords;//get the selected records data }, columns: [ . . ] }); |