Telerik ウィンドウを使用して ajaxRequest を使用してページを開くページがあります。それは美しく働きます。しかし、次にそのボタンを押しても何も起こりません。以下にコード スニペットを示します。window.ajaxRequest(url); window.center(); window.open();
以下のように、クライアント側の完全なスクリプトを試してみました。
var url = "/workbench/createscenario?opportunityid=" + opportunityid + "&customerid=" + customerid;
var windowElement = $.telerik.window.create({
title: "Form",
html: '',
contentUrl: url,
modal: true,
resizable: true,
draggable: true,
onClose: function (e) {
alert("destroying");
e.preventDefault();
windowElement.destroy();
},
onRefresh: function (e) {
windowElement.center();
}
}).data('tWindow');
windowElement.center().open();
どんな助けでも大歓迎です....私は本当に別のポップアップを試したくありません