I have a requirement in my application that, I have to perform an action based on the users response(serverside). So I have used radwindow for the same. Based on the response(ok/cancel) respective serverside events are fired. After this operation when i click on any comboboxes it loses its css style (Gets changed to transparent). Radgrids in the page also faces the same issue. please find the follwing code snippets I have used to open and close the radwindow from server side.
Open radwindow :
Telerik.Web.UI.
RadWindow window = radWindowManager.Windows[0];
window.VisibleOnPageLoad =
true;
Close radwindow :
Telerik.Web.UI.
RadWindow window = radWindowManager.Windows[0];
window.VisibleOnPageLoad =
false;
window.Dispose();
radwindow in aspx page :
<telerik:RadWindowManager ID="radWindowManager" runat="server">
<Windows>
<telerik:RadWindow ID="radWindowConfirm" runat="server" VisibleOnPageLoad="false"
Skin="Vista" Title="Error(s)" Behaviors="Close,Move" Modal="true" Height="200px">
<ContentTemplate>
<asp:Label ID="lblDuplicate" runat="server" ForeColor="Red" Text="<%$ Resources:ValidationMessages, DuplicateEntry %>" />
<asp:Button ID="btnConfirmOk" Text="OK" runat="server" OnClick="btnRadConfirm_Click"
Visible="false" />
<asp:Button ID="btnConfirmCancel" Text="Cancel" runat="server" OnClick="btnRadNotConfirm_Click"
Visible="false" />
</ContentTemplate>
</telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>
Please find the attached screen shots of both scenarios. Please let me help in this issue.
Regards,
Chandrababu.