Completed
Last Updated: 26 Nov 2018 11:28 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 03 Jul 2018 13:55
Category: PropertyGrid
Type: Bug Report
3
FIX. RadPropertyGrid - editor jumps to another item when the validation fails and you try to scroll
To reproduce: run the attached sample project and follow the steps from the gif file.

Workaround: cancel the edit operation when handling the MouseDown event of RadPropertyGrid:

        private void radPropertyGrid1_MouseDown(object sender, MouseEventArgs e)
        {
            var elementUnderMouse = this.radPropertyGrid1.ElementTree.GetElementAtPoint(e.Location).FindAncestor<RadScrollBarElement>();
            if (elementUnderMouse!=null)
            {
                this.radPropertyGrid1.CancelEdit();
            } 
        }
0 comments