How to stop Telerik RadWindow from always reloading on the next PostBack
Posted
by Andrew
on Stack Overflow
See other posts from Stack Overflow
or by Andrew
Published on 2010-05-22T13:04:39Z
Indexed on
2010/05/22
13:10 UTC
Read the original article
Hit count: 1304
I am invoking a RadWindow as a dialog in my web page. I am invoking from code-behind since I need to pass some parameters:
radWindow1.NavigateUrl = url + "?England,Germany,France";
radWindow1.VisibleOnPageLoad = true;
This works great, however it keeps reloading on each and every postback.
How can I stop the RadWindow from reloading? I don't mind code-behind or JavaScript to achieve this.
© Stack Overflow or respective owner