This question is locked. New answers and comments are not allowed.
Hello there!
Is there any reason why the TabNavigation doesn't work as expected in the following snippet of code:
I'm expecting to see the Tab key caret jumping to the next control after one hit.
Thanks in advance!
Is there any reason why the TabNavigation doesn't work as expected in the following snippet of code:
<
telerik:RadMaskedTextInput
x:Name
=
"LastNameInput"
Grid.Row
=
"1"
Grid.Column
=
"1"
Margin
=
"0 5"
HorizontalAlignment
=
"Stretch"
Text
=
"{Binding LastName, Mode=TwoWay, ValidatesOnDataErrors=True, NotifyOnValidationError=True}"
InputBehavior
=
"Insert"
EmptyContent
=
"Enter your last name"
Placeholder
=
"{Binding Placeholder, Mode=OneWay}"
Mask
=
"a50"
TextMode
=
"PlainText"
IsClearButtonVisible
=
"False"
TabNavigation
=
"Local"
/>
Thanks in advance!