Not sure if anyone has encountered this so far, but here's the layout. I have a radgrid inside of a RadAjaxPanel with a referencing RadAjaxLoadingPanel.
My problem is that the icon and css for the datetimecolumn filter is not there. When I remove the ajaxPanal and the LoadingPanel, all works well.
Is there a way around this? The RadAjaxPanel is awesome, since our apps need to refresh the grids after a radwindow close, but this bug (er whatever it is) makes the grid format look way off.
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Vista"> </telerik:RadAjaxLoadingPanel> <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" LoadingPanelID="RadAjaxLoadingPanel1" EnableEmbeddedScripts="true" Height="550px"><telerik:RadGrid ID="RadGrid1" runat="server" Height="412px" Width="818px" AutoGenerateColumns="true" AllowSorting="true" GroupingSettings-CaseSensitive="false" ClientSettings-Scrolling-AllowScroll="true" AutoGenerateHierarchy="true" PageSize="20" Skin="WebBlue" PagerStyle-AlwaysVisible="true" ClientSettings-ClientEvents-OnRowDblClick="RowDblClick" ClientSettings-Resizing-AllowColumnResize="true" ClientSettings-Scrolling-UseStaticHeaders="false" ClientSettings-Selecting-AllowRowSelect="true" ClientSettings-ClientEvents-OnRowClick="RadGrid1_RowSelected" ClientSettings-Scrolling-SaveScrollPosition="true" AllowFilteringByColumn="true" AllowPaging="true" OnNeedDataSource="RadGrid1_NeedDataSource" OnDetailTableDataBind="RadGrid1_DetailTableDataBind" OnColumnCreated="RadGrid1_ColumnCreated" OnPreRender="RadGrid1_PreRender" OnItemDataBound="RadGrid1_ItemDataBound" OnItemCreated="RadGrid1_ItemCreated"> <MasterTableView AllowMultiColumnSorting="True" ClientDataKeyNames="rvlPropertyID" DataKeyNames="rvlPropertyID" HierarchyLoadMode="Client" Name="Property" Width="100%"> </MasterTableView> <HeaderStyle VerticalAlign="Top" Width="125px" /> <PagerStyle AlwaysVisible="True" /> </telerik:RadGrid> </telerik:RadAjaxPanel>