私はこのウィンドウを持っています:
@(Html.Kendo().Window()
.Name("errorWindow")
.Title("")
.Content(@<text>
//Put text here
</text>)
.Draggable() //Enable dragging of the window
.Resizable() //Enable resizing of the window
.Modal(true)
.Visible(false)
)
これは、クライアントで次のように変換されます。
jQuery(function(){jQuery("#errorWindow").kendoWindow({"modal":true,"iframe":false,"draggable":true,"pinned":false,"title":"","resizable":true,"content":null,"actions":["Close"]});});
この JScript で呼び出すことができるもの:
function onAjaxFailure(data) {
var window = $("#errorWindow").data("kendoWindow");
window.center().open();
}
しかし、ウィンドウにテキストを配置するにはどうすればよいでしょうか。つまり、「データ」パラメーターは、エラー ウィンドウに表示されるテキストになります。