Hi Shishir,
Thank you for reporting this.
You can try to workaround this by creating a custom grid data row behavior:
BaseGridBehavior behavior = (BaseGridBehavior)this.radGridView2.GridBehavior;
behavior.UnregisterBehavior(typeof(GridViewDataRowInfo));
behavior.RegisterBehavior(typeof(GridViewDataRowInfo), new MyGridRowBehavior());
public class MyGridRowBehavior : GridDataRowBehavior
{
public override bool OnMouseDown(MouseEventArgs e)
{
typeof(GridRowBehavior).GetField("orderedRows", System.Reflection.BindingFlags.NonPublic |
System.Reflection.BindingFlags.Instance).SetValue(this, new List<GridViewRowInfo>());
bool result = base.OnMouseDown(e);
return result;
}
}
Regards,
Dinko | Tech Support Engineer
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.