jquerykendo-uikendonumerictextbox

How to disable default keyboard shortcuts in Kendo UI?


How can I disable default shortcuts like arrow up / arrow down in kendoNumericTextBox? By default this controll increment/decrement value then push up/down arrow. I cant find the way to disable it.


Solution

  • There is much easier way, just set step:0

    $("#numerictextbox").kendoNumericTextBox({
        step:0
    });