I've a radgrid :
<
telerik:RadGrid ID = "m_radRecipientsGrid" runat="server"
CellPadding = "0"
AllowMultiRowSelection="True"
GroupingEnabled="False"
HorizontalAlign="Left"
OnNeedDataSource="m_radRecipientsGrid_NeedDataSource"
GridLines="None"
Height ="225px"
Width = "99%"
OnItemCommand = "m_radRecipientsGrid_ItemCommand"
OnSelectedIndexChanged="m_radRecipientsGrid_SelectedIndexChanged" TabIndex="15">
<MasterTableView AllowPaging="true"
AllowSorting="true"
AllowFilteringByColumn="true"
PagerStyle-Mode="NextPrevAndNumeric" PageSize="10">
<Columns>
<telerik:GridClientSelectColumn Reorderable="False" UniqueName="ClientSelectColumn">
<HeaderStyle Width="30px">
</HeaderStyle>
</telerik:GridClientSelectColumn>
</Columns>
</MasterTableView>
<GroupingSettings CaseSensitive="false" />
<ClientSettings EnablePostBackOnRowClick ="true" >
<Scrolling AllowScroll="True"
UseStaticHeaders="True" />
<Selecting AllowRowSelect="true" EnableDragToSelectRows ="true" />
<Resizing AllowColumnResize="true"
ClipCellContentOnResize="true"
EnableRealTimeResize="true"
ResizeGridOnColumnResize="false" />
</ClientSettings>
</telerik:RadGrid>
When I select items in the grid,
I get the javascript error: 'this._owner' is null or not an object
How to get rid of this error.