Hello, I’m trying to override the default tabbing behavior. I’m using the following code.
_mygrid.attachEvent(“onTab”, function (mode) {
//do something custom here
return false;
});
This works fine until I started using splitAt(). If I’m in the last column the onTab event is ignored and it automatically takes me to the first cell in the next row in edit mode. Is there a way to prevent this?
Thanks
Scott