Kendo Keyboard Shortcut for "Update" button

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
5 лет назад
Hi, not sure if anyone would know this, but when I hit "Add new Record" and I fill out the new record I'd like to hit CTRL+ENTER and it "insert" that record. Anyone have any idea how to do this? I looked on google but couldn't quite figure it out.
5 лет назад
I was able to create new row with enter key press, but the problem is on the page (hp laptop blink codes)
$(document.body).keypress(function (e) {
    if (e.keyCode == 13) {
        var grid = $("#grid").data("kendoGrid");
        grid.addRow();
}
});
3 года назад
Lately, a lot of spammy looking posts like above.  Brand new users replying to topic, but they embed a link to some 3rd party site.  Be careful, because I've seen some of the links look like they are pointing to another forum post, but there's a 3rd party link suffixed to end so that you can't tel that there are two links.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.