|
Rank: Advanced Member Groups: Member
Joined: 9/18/2007 Posts: 38
|
is it possible to have a flyout panel remain open after a page is posted back?
Thanks
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
No. You can not do that as long as you have a full post back. When a full post back occurs, the whole page is unloaded and a new page (or a new version of the page) is requested from the server and reloaded.
Thanks!
|
|
Rank: Advanced Member Groups: Member
Joined: 9/18/2007 Posts: 38
|
what about a partial postback? is there anyway to do a serverside postback event and keep the window state open? thanks
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
Yes. You can use a partial postback. For example, ASP.NET AJAX UpdatePanel. There is really nothing particular about the flyout control when it comes to partial postback though --- you just update what you want to update and make sure you don't reload the flyout control.
Thanks
|
|