Kendo Window を使用して新しいレコードを作成し、このウィンドウで部分ビューをレンダリングします。コントローラーにフォームデータをポストすることはできますが、エラーが発生して剣道ウィンドウに戻る必要があるときにフォームを返すことができません。どんな助けでも大歓迎です。
意見:
// I call this method on ButtonClick
function openWindow(win) {
var window = $(win).data("kendoWindow");
window.refresh();
window.center();
window.open();
};
@(Html.Kendo().Window()
.Name("winCreate")
.Title("Create")
.Visible(false)
.Draggable(true)
.LoadContentFrom("_Create", "Issue")
.Modal(true)
.Actions(actions => actions
.Close()
)
)
コントローラ:
//I tried to recall Kendo Window as below, but it cannot be rendered:
return PartialView("_Create", "Issue", issueViewModel);