Completed
Last Updated: 13 Oct 2015 08:48 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 05 Jan 2015 15:47
Category: GridView
Type: Bug Report
1
FIX. RadGridView - the cursor is not changed when resizing the group panel
Please refer to the attached gif file.

Workaround:
 this.radGridView1.GridBehavior = new CustomBaseGridBehavior();


public class CustomBaseGridBehavior : BaseGridBehavior
{
    public override bool OnMouseMove(MouseEventArgs e)
    {
        GroupPanelSizeGripElement grip = this.GridViewElement.ElementTree.GetElementAtPoint(e.Location) as GroupPanelSizeGripElement;
        if (grip != null)
        {
            this.GridViewElement.ElementTree.Control.Cursor = Cursors.SizeNS;
            return true;
        }
        
        return base.OnMouseMove(e);
    }
}
Attached Files:
0 comments