BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
……………
@Component({
selector: 'app-container',
template: `<ejs-treegrid [dataSource]='data' (load)='load($event)' [treeColumnIndex]='1' childMapping='subtasks'>
<e-columns>
<e-column field='taskID' headerText='Task ID' textAlign='Right' width=70></e-column>
<e-column field='taskName' headerText='Task Name' textAlign='Left' width=200></e-column>
<e-column field='startDate' headerText='Start Date' textAlign='Right' format='yMd' width=90></e-column>
<e-column field='duration' headerText='Duration' textAlign='Right' width=80></e-column>
</e-columns>
</ejs-treegrid>`
})
.. . . . . .. . . . . . .
//Define load event//
load(args:Object){
var treegrid=document.getElementsByClassName("e-treegrid")[0].ej2_instances[0];
treegrid.allowKeyboard=false;
}
}
|
Hi,
It is possible to just disable specific key ? (all the arrows for example)
Hi Aurelien,
To achieve your requirement(disable specific key action in treegrid), we suggest you to use the load event of the TreeGrid, the keyPressed event of the grid.
In the load event, we obtain the instance of the TreeGrid and use a keyPressed function of the grid. Within this function, we prevent the arrow keys action of tree grid.
Refer to the below code snippet,
<ejs-treegrid #treegrid [dataSource]="data" childMapping="subtasks" [treeColumnIndex]="1" [editSettings]="editSettings" (load)="load($event)" height="900" >
load(args) { //bind keypressed event this.treegrid.grid.keyPressed = this.keypressed; } keypressed(args) { //here prevent key action based on condition if ( args.key == 'ArrowDown' || args.key == 'ArrowUp' || args.key == 'ArrowLeft' || args.key == 'ArrowRight' ) { args.cancel = true; }
|
Refer to the below sample,
https://stackblitz.com/edit/angular-7xpar2-dwva3q?file=src%2Fapp.component.html
Refer to the below API documentation,
https://ej2.syncfusion.com/angular/documentation/api/treegrid/#load
https://ej2.syncfusion.com/angular/documentation/api/grid#keypressed
Kindly get back to us for further assistance.
Regards,
Pon selva