javascript - How to do grid update without closing window -


i have grid data. using "popup editing" , custom template window.

        editable: {             mode: "popup",             window : {                 resizable: true,                 animation: false,                 modal: false             },             template: kendo.template($("#popup-editor").html())         }, 

i want make grid update when user looking @ editing window, window closing when this:

$("#grid").data("kendogrid").datasource.read(); 

how update grid without window closing?

according kendo documentation should:

-set grid's editable configuration option

-declare field definitions through datasource schema

-configure datasource performing crud data operations defining transport -> create/update/destroy attributes

and popup editor update datasource automatically


Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -