Hi Nga,
Thanks for Contacting Syncfusion support.
We suspect that you want to disable the tab key processing for Grid toolbar elements. If so, we suggest you to prevent the tab key operations in Grid dataBound event like as follows,
Code example:
$("#Grid").ejGrid({
dataSource: window.gridData,
allowPaging: true,
dataBound:function(args){
//here we can prevent the tab key Grid toolbar and page elements $("#"+this._id+" .e-gridtoolbar,.e-pager").attr("tabindex",-1);
},
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] },
columns: [
. . .
]
}); |
If we misunderstood your requirement, then could you please provide more details about your requirement?
Regards,
Venkatesh Ayothiraman.