Completed
Last Updated: 20 Jun 2013 05:03 by ADMIN
ADMIN
Stefan
Created on: 20 Jun 2013 05:03
Category: GridView
Type: Bug Report
2
FIX. RadGridView - right clicking a cell which is not entirely visible causes Object reference exception
Workaround, use the following behavior:

 public class CustomDataRowBehavior : GridDataRowBehavior
    {
        protected override bool OnMouseDownRight(MouseEventArgs e)
        {
            if (this.IsInEditMode && !this.GridViewElement.EndEdit())
    
0 comments