jQuery UI Widgets › Forums › Grid › presskey in cellbeginedit
Tagged: grid keyboard navigation, javascript grid, javascript window, jquery grid, jquery window, presskey
This topic contains 1 reply, has 2 voices, and was last updated by ivailo 9 years, 2 months ago.
Hello to all I want on the cellbeginedit when press together Ctrl + Entre ,open a modal or popup window??
Hi zahra,
You can achieve this with using handlekeyboardnavigation function.
handlekeyboardnavigation: function (event) { var key = event.charCode ? event.charCode : event.keyCode ? event.keyCode : 0; if ((key == 13) && event.ctrlKey) { $("#jqxwindow").jqxWindow('open'); return true; } },
Here is an example.
Best Regards, Ivailo Ivanov
jQWidgets Team http://www.jqwidgets.com
You must be logged in to reply to this topic.