Hi.
I asked before about how to move cell when press ‘enter’ key in grid.
But some reason, it deleted… I still have question so I write again.
Sematik said, use enableAccessKeyMap() method and tell me document here.http://docs.dhtmlx.com/grid__navigation.html
I tried MS Access keymap like example and write after init() method in my project,
But can’t use enableAccessKeyMap() method.
Now I’m using MVC4 in asp.net 2010. In the script, just dhtmlxSuite 4.3 version dhtmlx.js is imported. If I can’t use above method, do I need to use another script?
This is my code.
[code]
function doOnLoad() {
// Grid
myGrid = new dhtmlXGridObject('gridbox');
myGrid.setImagePath("/Scripts/imgs/");
myGrid.setHeader("name,phone");
myGrid.setInitWidths("80,80");
myGrid.setColAlign("right,left");
myGrid.setColTypes("ed,ed");
myGrid.setColumnIds("name,phone");
myGrid.setColSorting("str,str");
myGrid.init();
//myGrid.enableAccessKeyMap(); //-----------------> error
…
})
[/code]
The extension is available in PRO version of the dhtmlxGrid only.
If the problem still occurs for you please, provide with a complete demo, where the issue can be reconstructed locally.