Unplanned
Last Updated: 14 Aug 2017 11:57 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 02 Aug 2017 11:03
Category: Editors
Type: Bug Report
2
FIX. RadPopupEditor - although the TabStop property is set to true, the control is not activated when pressing Tab to iterate the controls
Workaround: override the ProcessCmdKey method of the form and activate the desired control:
 protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
        {
            if (keyData== Keys.Tab)
            {
                this.ActiveControl = this.radPopupEditor2.PopupEditorElement.TextBoxElement.TextBoxItem.HostedControl;
                return true;
            }
            return base.ProcessCmdKey(ref msg, keyData);
        }

IMPORTANT!!! Tab key should navigate to the next control even if the popup is opened.
Attached Files:
0 comments