简体   繁体   中英

saving empty field in kendo grid

i would like to add possibility to erase content of the cell and save the empty field. I tried to define my field in parameter update map like this:

((data.Value) ? '","Value": "' + data.Value : "") +

and in schema like this:

"Value": { 
   type: "number", 
   parse: function (value) { 
       return (value === null || undefined) ? null : value; 
   }, 
   nullable: true 
},

but I always get the last saved value. I tried to change it in few ways but still doesn't work, either it saves null as a string or something like that.

Let kendo.stringify do the work for you. You just have to set nullable: true (as you have already done). You don't need the parse.

Checkout http://dojo.telerik.com/ORudo - try editing the UnitsInStock to null and hitting Save Changes - notice that the UnitsInStock value is null.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM