我有這樣的劍道窗口獲取數據MVC劍道窗口 - 在我的應用程序的JavaScript功能
Html.Kendo().Window()
.Name("copyStructure")
.Title("Copy Structure")
.Content("Loading...")
.LoadContentFrom("CopyStructure", "NewXmlLayout") // <-- here*
.Draggable(false)
.Visible(false)
.Modal(true)
.Actions(s => s.Custom(""))
.Events(e => e.Open("openWindow").Close("closeWindow"))
,我試圖將數據傳遞到acrion在LoadContentFrom()至極由JavaScript函數返回,但我不知道該怎麼做。我可以通過這樣的數據:
.LoadContentFrom("CopyStructure", "NewXmlLayout", new { type= "INPUT" })
但是,我不是在尋找。
的JS功能:
function getInfo() {
return { type: "INPUT" };
};
我的控制器:
public ActionResult CopyStructure(string type)
{
return PartialView();
}
當用'getInfo()'替換''NewXmlLayout''時會發生什麼? 「不是我在找什麼」是什麼意思? – DanM7
「NewXmlLayout」是我的控制器,'CopyStructure'是我的Action。 – Yatiac