I have a regular gridview that has a link that opens a rad window. The rad window is defined as this:
On the rowdatabound event of the gridview, I assign the onclick method of a hyperlink control to this:
Everything works good there. Recently I added the Maximize behavior with the Close behavior. When I open the rad window, maximize it, then click the "red X" to close, then reopen another rad window, the width is set to 100% and the height is what it should be. Not the desired effect. Furthermore, if you re maximize the window, it maximizes but then falls into (behind) the grayed out are of the page and you cannot click anything. Any ideas?
<telerik:RadWindowManager ID="radWindows" runat="server" Left="" Modal="True" |
Top="" VisibleStatusbar="false" VisibleTitlebar="True" Behaviors="Close"> |
<Windows> |
<telerik:RadWindow |
ID="radEditPullDetail" |
runat="server" |
Height="568px" |
Width="824px" |
Title="Details" |
ClientCallBackFunction="CallBackFunction" |
Behaviors="Maximize,Close" |
> |
</telerik:RadWindow> |
</Windows> |
</telerik:RadWindowManager> |
"window.radopen('newpage.aspx','radEditPullDetail'); return false;" |