In my application I am firing session timeout notification using igDialog("open"), as in my application we have multiple windows and pop-up's many parent child windows, and I am showing session timeout popup on all open windows, I like to close all session timeout popup's in one click. Please suggest.
Yes, you are correct and yet the igDialog is not aware of the other widgets existing on the page. However, you can clean up the other jQuery widgets on the page in a similar manner. It may require to iterate trough these widgets(or use a common class like "myWidget" ) and clean them up.
No destroy not working as expected, it is not closing the child window igDialog popup's.
Hello Chetan Birari, Thank you for posting in our community!
You can obtain all igDialog instances and destroy these at once. For example, you can add the same class="myWidget"> to all of the instances you want to destroy and call $('.myWidget').igDialog("destroy"); for example. In some cases you may want to clear the HTML content prior to destroying the widgets like calling $('.myWidget').igDialog("content", "");
You can refer to the code snippets bellow:
//Init:<div id="dialog" class="myWidget"> <img style="width: 200px" src="">igniteui.com/.../img> </div> <div id="dialog1" class="myWidget"> <img style="width: 200px" src="">igniteui.com/.../img> </div>
$(function () { $("#dialog").igDialog({ height: 250 }); $("#dialog1").igDialog({ height: 250 });
})//Cleanup:$('.myWidget').igDialog("content", "");$('.myWidget').igDialog("destroy");
Please let me know how my suggestions work for you!