radG:RadGrid ID="RadGrid3". Everything is runnig fine on IE7 but when some user is trying to click "Insert" using IE6 SP2 (using XP SP2) the browser is getting shut down.
Can you please suggest what could have gone wrong for IE6 users?
Thanks!
3 Answers, 1 is accepted
I am afraid the provided information is not sufficient to determine the cause for the problem. Can you paste some code/markup so we can get a better idea of your scenario?
Regards,
Pavel
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Below goes the ASPX code. IE crashes on the click of "Insert" link in the edit mode which has teh following command: OnInsertCommand="RadGrid3_InsertCommand".
My IE6 Temporary Internet File Settings is "Every Visit To The Page" and the version number of RadGrid.Net2.dll is 3.5.2.0 and that of RadAjax.Net2.dll is 1.0.3.0.
<radA:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<radA:AjaxSetting AjaxControlID="RadGrid3">
<UpdatedControls>
<radA:AjaxUpdatedControl ControlID="RadGrid3" />
<radA:AjaxUpdatedControl ControlID="ErrorMessage" />
<radA:AjaxUpdatedControl ControlID="btnOK" />
</UpdatedControls>
</radA:AjaxSetting>
</AjaxSettings>
</radA:RadAjaxManager>
<div style="margin: 10px;">
<table>
<tr>
<td>
<div style="color:Red" id="ErrorMessage" runat="server"></div>
</td>
</tr>
<tr>
<td>
<radG:RadGrid ID="RadGrid3" Skin="Default" runat="server" Width="95%" GridLines="Both"
AutoGenerateColumns="False" PageSize="13" AllowSorting="True" AllowPaging="True" AllowAutomaticInserts="False"
AllowMultiRowSelection="False" OnNeedDataSource="RadGrid3_NeedDataSource" OnInsertCommand="RadGrid3_InsertCommand" OnItemDataBound="RadGrid3_ItemDataBound" OnCancelCommand="RadGrid3_CancelCommand">
<PagerStyle Mode="NumericPages"></PagerStyle>
<MasterTableView EditMode="InPlace" AllowMultiColumnSorting="True" Width="100%" CommandItemDisplay="top">
<Columns>
<radg:GridBoundColumn ReadOnly="true" Visible="false" HeaderText="ID" DataField="ID" UniqueName="ID"></radg:GridBoundColumn>
<radg:GridTemplateColumn HeaderText="Product Class" UniqueName="TemplateColumnProdClass">
<EditItemTemplate>
<radc:RadComboBox id="RadComboBoxProdClass" Height="200px" runat="server" AutoPostBack="true" OnSelectedIndexChanged="ProductClassDropDown_SelectedIndexChanged" OnPreRender="ProductClassDropDown_PreRender" Skin="VSNET">
<Items>
<radc:RadComboBoxItem id="ProductClasses" runat="server"></radc:RadComboBoxItem>
</Items>
</radc:RadComboBox>
</EditItemTemplate>
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem,"Item2") %>
</ItemTemplate>
</radg:GridTemplateColumn>
<radg:GridTemplateColumn HeaderText="Product Types" UniqueName="TemplateColumnProdType">
<EditItemTemplate>
<radc:RadComboBox id="RadComboBoxProdType" Height="200px" runat="server" Skin="VSNET">
<Items>
<radc:RadComboBoxItem id="ProductTypes" runat="server"></radc:RadComboBoxItem>
</Items>
</radc:RadComboBox>
</EditItemTemplate>
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem,"Item4") %>
</ItemTemplate>
</radg:GridTemplateColumn>
<radg:GridEditCommandColumn UniqueName="EditCommandColumn" EditText="">
<HeaderStyle Width="80px"/>
</radg:GridEditCommandColumn>
</Columns>
</MasterTableView>
<ClientSettings ReorderColumnsOnClient="True" AllowColumnsReorder="True">
<Resizing AllowRowResize="True" AllowColumnResize="True"></Resizing>
</ClientSettings>
</radG:RadGrid>
I am afraid that the version of RadGrid you are using is no longer supported. Please update to a more recent release and let me know if the problem persists. You can read more details on how to upgrade here.
Sincerely yours,
Pavel
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.