Thanks, thats the code : Here in JSFiddle.
settings.beforeKeyDown = function(event){
switch (event.key) {
case "F2":
case "Enter":
event.stopImmediatePropagation();
break;
}
}
In this case, the user can’t press enter at any cells. How can I do the same to prevent theses keys for only “cdsa_dropdown” renderer ? (this renderer is explained in my example)
$("html > body").on("dblclick", "table > tbody > tr > td > select", function (event) {
alert("you dbl clicked");
event.stopImmediatePropagation();
});
EDIT : As you can see in this example, I failed to prevent dblclick event. Can you explain me why please ?
Thanks.