I have dynamic content that goes into an RadAjaxPanel that is inside a RadWindow. The content I am adding has styles and float attributes to create a multi-column display of information. However, when I add the content to the window, the styles appear to be lost and my dynamic content is presented top down. In addition, the auto-resize ends up with scrollbars on my content...sometime. Other times is appears ok. It never works the first time the window is opened.
Is there a way to keep the dynamic content styles?
Here is the code setup for the RadWindow.
Is there a way to keep the dynamic content styles?
Here is the code setup for the RadWindow.
| <telerik:RadWindow ID="RadWindow1" runat="server" Animation="Fade" |
| AutoSize="True" Modal="True" Behavior="Resize, Close, Move" |
| Behaviors="Resize, Close, Move" InitialBehavior="None" Left="" |
| ShowContentDuringLoad="False" Top="" VisibleStatusbar="False" |
| VisibleTitlebar="False"> |
| <ContentTemplate> |
| <div id="criteriapanel" class="criteriapanel"> |
| <telerik:RadAjaxPanel ID="updatePanel" runat="server" |
| HorizontalAlign="NotSet" LoadingPanelID="RadAjaxLoadingPanel1" > |
| <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" Runat="server" |
| Height="39px" InitialDelayTime="300" IsSticky="True" MinDisplayTime="200" |
| Skin="Default" BackColor="yellow" OnClientShowing="MyClientShowing" OnClientHiding="MyClientHiding"> |
| </telerik:RadAjaxLoadingPanel> |
| </telerik:RadAjaxPanel> |
| <asp:Button runat="server" ID="GenerateReport" CssClass="button" Text="Generate Report" /> |
| <asp:Button runat="server" ID="CancelReport" CssClass="button" Text="Cancel" OnClientClick="CloseCriteria();return false;" /> |
| </div> |
| </ContentTemplate> |
| </telerik:RadWindow> |