Note that there are some explanatory texts on larger screens.

plurals
  1. POKendoUI Window Issue if more than one Window pop is there
    primarykey
    data
    text
    <p>H,I am using the KendoUI window and I am getting an issue as i have to open 3 Pop up window that contains divs as a Content in it but of different heights.if I select first one say of height 100px and close it and open the second window of height say 200px,it remains at 100px and hence hiding the content of the second popup window and when i resize the window and close it and when again open it,it remains at the previous dimension that i had resized it. Why this is happening,not getting any clue on this.Please help me. </p> <pre><code>if (AccountType == "Bank") { //alert("Return View For Bank") $.ajax({ type: 'POST', url: "Popup_Account_Update", data: {AccountID:AccountID}, success: function (response) { $('#Update_Window').empty(); $('#Update_Window').html(response); $popup = $("#Update_Window"); var wnd = $popup.kendoWindow({ //content: Main.rootUrl("Home/Customer/" + customer.attributes[1].value), actions: ["Close"], modal: true, //title: customer.attributes[2].value, visible: false, width: '500px', height: '200px', scrollable: false, //deactivate: function () { wnd.destroy(); } }).data('kendoWindow').center(); wnd.open(); var tmp = $("#Update_Window").data("kendoWindow"); tmp.title("Bank Account Edit"); } }); } if (AccountType == "Cash") { //alert("Return View For Bank") $.ajax({ type: 'POST', url: "Popup_Account_Update", data: { AccountID: AccountID }, success: function (response) { $('#Update_Window').empty(); $('#Update_Window').html(response); $popup = $("#Update_Window"); var wnd1 = $popup.kendoWindow({ //content: Main.rootUrl("Home/Customer/" + customer.attributes[1].value), actions: ["Close"], modal: true, //title: customer.attributes[2].value, visible: false, width: '500px', height: '360px', scrollable: false, //deactivate: function () { wnd1.destroy(); } }).data('kendoWindow').center().open(); //wnd1.open(); var tmp = $("#Update_Window").data("kendoWindow"); tmp.title("Cash Account Edit"); } }); } &lt;div id="Update_Window" style="display:none;"&gt;&lt;/div&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload