In IE7, if a rad button appears inside a RadGrid nested view template with HierarchyLoadMode="Client", the button does not hide after the details are shown then toggled off again:
Anything special I should be doing?
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="repro.aspx.cs" Inherits="_Default" %><!doctype html><html><head><title></title></head><body> <form id="form1" runat="server"> <telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager> <telerik:RadGrid ID="RadGrid1" runat="server" CellSpacing="0" GridLines="None"> <MasterTableView HierarchyLoadMode="Client"> <NestedViewTemplate> <telerik:RadButton ID="RadButton1" runat="server" Text="RadButton"> </telerik:RadButton> </NestedViewTemplate> </MasterTableView> </telerik:RadGrid></form></body></html>using System;public partial class _Default : System.Web.UI.Page{ protected void Page_Load(object sender, EventArgs e) { RadGrid1.DataSource = new string[] { "item1", "item2" }; }}Anything special I should be doing?