Hi everyone, i’m having trouble disabling update on “del” press while a row is selected.
I have a grid showing questions and their parameters, and in row details we can handle answers parameters.
I desperately want to disable this del key for future use of the grid by anyone without this strange behaviour.
i’m trying this :
keyboardnavigation: false, handlekeyboardnavigation: function(event){ var key = event.charCode ? event.charCode : event.keyCode ? event.keyCode : 0; if (key == 13) { return true; } else if (key == 27) { return true; } else if (key == 46) { event.stopPropagation(); event.preventDefault(); return false; } },
but that wont work, idk why.
Please give me a clue on how to disable this del key functionnality !
PS : I aready saw that
and that too