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
Post a Comment