I am using the RadWindowManager and creating a Window in it's properties:
| <telerik:RadWindowManager ID="winmanParolee" runat="server" ReloadOnShow="false" VisibleOnPageLoad="true" KeepInScreenBounds="true"> |
| <Windows> |
| <telerik:RadWindow ID="winPopup" runat="server" OpenerElementID="btnTest" ShowContentDuringLoad="true" KeepInScreenBounds="true" Modal="true"> |
| <div>My dialog content here...</div> |
| </telerik:RadWindow> |
| </Windows> |
| </telerik:RadWindowManager> |
I am trying to open the window on buttonclick, using an asp:button. If I have the window visible on load then it shows, but when hidden and the button is clicked it dows not appear.
I am loading this from a user control that is loaded on click of a tab in a tabstrip.
Any help is greatly appreciated.