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

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -