I have a perplexing issue. My user control has a RadAjaxManager, RadGrid and RadAjaxLoadingPanel. The loading panel overlays the RadGrid as expected during updates to the grid. The grid is configured to display a hierarchy of a straight forward master detail pattern.
However, if I set the HorizontalAlign property to any value other than NotSet for the MasterTableView of the RadGrid, the loading panel displays as a very narrow control at the top of the RadGrid. Is this a known issue and is there a work around?
However, if I set the HorizontalAlign property to any value other than NotSet for the MasterTableView of the RadGrid, the loading panel displays as a very narrow control at the top of the RadGrid. Is this a known issue and is there a work around?
<telerik:RadFormDecorator ID="QsfFromDecorator" runat="server" DecoratedControls="Fieldset" EnableRoundedCorners="true" /> <telerik:radajaxmanager ID="RadAjaxManager1" runat="server" OnAjaxRequest="RadAjaxManager1_AjaxRequest" DefaultLoadingPanelID="RadAjaxLoadingPanel1" EnableHistory="True" ClientEvents-OnRequestStart="RequestStart" ClientEvents-OnResponseEnd="ResponseEnd" > <AjaxSettings> <telerik:AjaxSetting AjaxControlID="RadAjaxManager1" > </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="RadGrid1" > <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="RadGrid1" LoadingPanelID="RadAjaxLoadingPanel1" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> <ClientEvents OnResponseEnd="ResponseEnd" OnRequestStart="RequestStart" /> </telerik:radajaxmanager> <telerik:radajaxloadingpanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Windows7" EnableAjaxSkinRendering="true" > </telerik:radajaxloadingpanel> <telerik:RadGrid ID="RadGrid1" runat="server" OnNeedDataSource="RadGrid1_NeedDataSource" OnDetailTableDataBind="RadGrid1_DetailTableDataBind" AllowFilteringByColumn="true" AllowSorting="True" AutoGenerateHierarchy="True" CellSpacing="0" PageSize="25" Skin="Windows7" ClientSettings-AllowExpandCollapse="true" GridLines="None" oncolumncreated="RadGrid1_ColumnCreated" onitemdatabound="RadGrid1_ItemDataBound" OnItemCommand="RadGrid1_ItemCommand" onitemcreated="RadGrid1_ItemCreated" ondatabound="RadGrid1_DataBound" HorizontalAlign="Right" > <MasterTableView HorizontalAlign="Right" AllowPaging="true" AllowFilteringByColumn="true" CommandItemDisplay="Top" Caption="Performance Data" > <DetailTables> <telerik:GridTableView AllowFilteringByColumn="false" HorizontalAlign="Right" > <CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings> <RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column"></RowIndicatorColumn> <ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column"></ExpandCollapseColumn> <EditFormSettings> <EditColumn FilterControlAltText="Filter EditCommandColumn column"></EditColumn> </EditFormSettings> </telerik:GridTableView> </DetailTables> <CommandItemSettings ShowExportToExcelButton="true" ShowAddNewRecordButton="false" /> <RowIndicatorColumn Visible="True" FilterControlAltText="Filter RowIndicator column"></RowIndicatorColumn> <ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column"></ExpandCollapseColumn> <EditFormSettings> <EditColumn FilterControlAltText="Filter EditCommandColumn column"></EditColumn> </EditFormSettings> </MasterTableView> <FilterMenu EnableImageSprites="False"></FilterMenu> <ExportSettings> <Excel Format="Biff"></Excel> </ExportSettings> <ClientSettings ReorderColumnsOnClient="true"> <Selecting AllowRowSelect="True" /> </ClientSettings> </telerik:RadGrid>