am Using KEndo Grid .. popup editing For Toolbar and inline Editing for Command
$(".k-grid-popup", grid.element).on("click", function () {
var popupWithOption = {
mode: "popup",
template: kendo.template($("#customPopUpTemplate").html()),
window: {
title: "Your Title"
}
};
grid.options.editable = popupWithOption ;
grid.addRow();
grid.options.editable = "inline";
});
This Code is Working Fine,,If i Click Edit button And Update the Record then i click add button means that 2 popup window will opened,, How to Restrict this Problem
thanks in advance..