Completed
Last Updated: 30 Oct 2017 06:48 by ADMIN
ADMIN
Dimitar
Created on: 16 Oct 2017 06:57
Category: VirtualGrid
Type: Bug Report
0
FIX. RadVirtualGrid - exception when the grid has only one row and Enter is pressed.
Use attached to reproduce (just start it and press enter).

Workaround:

class MyBehavior : VirtualGridInputBehavior
{
    public MyBehavior(RadVirtualGridElement element) : base(element)
    {

    }
    protected override bool HandleEnterKey(KeyEventArgs keys)
    {
        if (this.GridElement.CurrentCell != null)
        {
            return base.HandleEnterKey(keys);
        }
        return false; 
    }
}


radVirtualGrid1.VirtualGridElement.InputBehavior = new MyBehavior(radVirtualGrid1.VirtualGridElement);
Attached Files:
0 comments