I am having a issue where Placing a Radbutton in a Grid Template Column, displays and functions correctly in IE8 but does not display correctly in IE7 or running IE8 in compatibility mode. I saw a similar post but it dealt with the Resize event, my window is not being resized.
I have attached my code for the grid and a sample of the grid when viewed on IE7. As you can see the buttons no longer scroll with the grid and are rendered above the grid.
I have attached my code for the grid and a sample of the grid when viewed on IE7. As you can see the buttons no longer scroll with the grid and are rendered above the grid.
<telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="False" GridLines="None" onneeddatasource="RadGrid1_NeedDataSource" Skin="Forest"> <ClientSettings> <Scrolling AllowScroll="True" ScrollHeight="400px" UseStaticHeaders="True" /> </ClientSettings> <MasterTableView AllowPaging="True" PageSize="15"> <CommandItemSettings ExportToPdfText="Export to Pdf"></CommandItemSettings> <RowIndicatorColumn FilterControlAltText="Filter RowIndicator column"> <HeaderStyle Width="20px"></HeaderStyle> </RowIndicatorColumn> <ExpandCollapseColumn FilterControlAltText="Filter ExpandColumn column"> <HeaderStyle Width="20px"></HeaderStyle> </ExpandCollapseColumn> <Columns> <telerik:GridTemplateColumn FilterControlAltText="Filter TemplateColumn column" UniqueName="TemplateColumn"> <ItemTemplate> <telerik:RadButton ID="RadButton1" runat="server" Skin="Forest" Text="Edit Rec" > <Icon PrimaryIconCssClass="rbEdit" PrimaryIconLeft="4" PrimaryIconTop="4" /> </telerik:RadButton> </ItemTemplate> </telerik:GridTemplateColumn> <telerik:GridBoundColumn DataField="Signer_Name" FilterControlAltText="Filter column column" UniqueName="column"> </telerik:GridBoundColumn> </Columns> <EditFormSettings> <EditColumn FilterControlAltText="Filter EditCommandColumn column"></EditColumn> </EditFormSettings> </MasterTableView> <FilterMenu EnableImageSprites="False"></FilterMenu> <HeaderContextMenu CssClass="GridContextMenu GridContextMenu_Default"></HeaderContextMenu> </telerik:RadGrid>