Currently, I am working on ASP using Telerik components.
Within my webpage, I have incorporated 2 buttons called Create Window
and Postback
. The functionality behind the Create Window
button involves creating a new RadWindow
dynamically upon its click event (client-side) by utilizing window.radopen()
. As for the Postback
button, it triggers a simple postback. However, the issue I am encountering is that the windows disappear after each postback. How can I ensure that my RadWindows
remain open even after a postback, retaining their content and position?
In case there is no inherent method to restore my dynamic RadWindows, kindly advise me on how to store the current windows' content to reload manually during the subsequent postback. My initial thought was to utilize a Hidden control to save the RadWindow's position and content. Nevertheless, I am unsure of how to implement this considering the window's content consists of a user control with numerous textboxes, and redoing all the data entry would be inconvenient for the user.