jquery - KendoUI Grid number column will not edit as number -


i have column called "quantity", connected field (column name) "quantity".

in model have set so:

... quantity: {     type: 'number',     editable: true,     validation: {         min: 1     } } ... 

however, when click on cell edit it, nothing.

if change type: string, works fine. number can use number rollers.

how can work?

the information shared not show issue comes from, missing something.

check jsbin - same , works expected, try edit id field of type number.

    schema: {     model: {         id: "id",         fields: {             id: { type: "number" },             name: { type: "string" },             position: { type: "number" }         }     } } 

Comments

Popular posts from this blog

Winapi c++: DialogBox hangs when breaking a loop -

vb.net - Font adding using PDFsharp -

javascript - jQuery iScroll clickable list elements while retaining scroll? -