In a previous question you told me how to capture a Tab key press and that works great:
mygrid._key_events.k9_0_0 = function(){
…
};
How do I capture Shift Tab for going backwards?
The other thing i’m trying to do is when setting the new cell it wont enter edit mode on a checkbox type cell. Normal textboxes work great.
mygrid.selectCell(newRowIndex,newCellIndex,false,false,true,true); // parameter for entering edit mode is set to true
I’ve also tried the mygrid.editCell function but it doesnt work on checkbox type cells either.
How do I capture Shift Tab for going backwards?
You can try the following in this case:
mygrid._key_events.k9_0_1 = function(){
…
};
>> The other thing i’m trying to do is when setting the new cell it wont enter edit mode on a checkbox type cell.
Checkbox doesn’t have edit mode.