Completed
Last Updated: 21 Sep 2018 14:15 by ADMIN
ADMIN
Dilyan Traykov
Created on: 20 Sep 2018 08:12
Category: MaskedInput
Type: Bug Report
2
MaskedInput: Focus is lost when there is a Label with a Target and the access key is entered in the masked input
The current workaround is to create a custom control and override the OnTextInput method:

    public class CustomInput : RadMaskedTextInput
    {
        protected override void OnTextInput(TextCompositionEventArgs e)
        {
            base.OnTextInput(e);
            e.Handled = true;
        }
    }
1 comment
ADMIN
Ralitsa
Posted on: 21 Sep 2018 14:15
Hi,

The fix for the issue will be available in next LIB version (2018.3.924). It will also be included in our official version – R3 2018 SP1, scheduled for the mid of October, 2018.

Best regards,
Ralitsa Kumanova