Hello,
I’m using DHTMLX (Ver 3.6) and in certains conditions, the keyboard support seems to not function properly.
My grid is composed of “checkboxs, with a #master_checkbox as header” and multiples text columns. I did set the keyboardSupport on true by using “myGrid.enableKeyboardSupport(true);”
-
At first the keyboard navigation and checkbox check on space button works good, but whenever i mouse click on a row, i still can navigate using the arrow keys but can’t check any checkbox using space.
-
In another situation, whenever i attach an event on keyPress as
mygrid.attachEvent(“onKeyPress”,function()
{
//TODO
});
the keyboard support is completely nullified as i can’t navigate nor check any checkbox using space.
I also noticed that the event
grid.attachEvent(“onCheck”, function(rId,cInd,state){
// your code here
});
only fire when checking rows, but not “master_checkbox”
Thanks.
Regards,
Steven.