Hi Dylan,
You can disable the keyboard navigation by using “renderSuccess” event in PivotGrid. Please refer below code snippet.
Code Snippet: [javascript]
$("#PivotGrid1").ejPivotGrid({
renderSuccess: function (args)
{
this._off($(document), 'keydown', this._keyDownPress);
this._off($(document), 'keyup', this._keyUpPress);
if (!ej.isNullOrUndefined(this._schemaData)) {
this._schemaData._off($(document), 'keydown', this._schemaData._keyDownPress);
this._schemaData._off($(document), 'keyup');
|
Meanwhile, we have prepared sample for your reference. Please find the sample in below link.
Thanks,
Manikandan.