Hi
I have created user control at backend part with RadGrid
<telerik:RadGrid ID="RadGridList" Width="100%" runat="server"
DataSourceID="ObjectDataSource1"
AllowAutomaticInserts="true" AllowAutomaticDeletes="true" AutoGenerateColumns="false"
GridLines="Horizontal" >
<ValidationSettings EnableValidation="false" />
<MasterTableView AllowAutomaticInserts="true" DataKeyNames="Id" CommandItemDisplay="Top" Width="100%" >
<Columns>
<telerik:GridTemplateColumn HeaderText="Product Name" UniqueName="ProductNameColumn">
<EditItemTemplate>
<telerik:RadComboBox ID="RadComboBox1" AppendDataBoundItems="true" Height="200px" runat="server"
EmptyMessage="Select a Product"
EnableLoadOnDemand="true"
ShowMoreResultsBox="true"
EnableVirtualScrolling="true"
SelectedValue='<%# Bind("Id")%>'>
<WebServiceSettings Method="GetProducts" Path="../../../Services/ProductService.asmx" />
</telerik:RadComboBox>
</EditItemTemplate>
<ItemTemplate>
<%#Eval("Name")%>
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridButtonColumn ConfirmText="Delete this product?" ConfirmDialogType="RadWindow"
ConfirmTitle="Delete" ButtonType="LinkButton" CommandName="Delete" Text="Delete"
UniqueName="DeleteColumn" />
</Columns>
</MasterTableView>
</telerik:RadGrid>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server"
InsertMethod="Insert" SelectMethod="Select" DeleteMethod="Delete"
TypeName="Products.ProductAccessoriesManager" >
<InsertParameters>
<asp:Parameter Name="Id" Type="String" />
</InsertParameters>
<DeleteParameters>
<asp:Parameter Name="Id" Type="Object" />
</DeleteParameters>
</asp:ObjectDataSource>
After updating of Sitefinity 4 to 992 build when I click "Add New Record Button" causes exception
Could not find the specified key "InsertText" or class id "RadGrid.Main".
Telerik.Web.UI.dll version is 2010.3.1109.40