Hi,
I have textbox and a XamMaskedEditor on a panel.
I have specified the PropmptChar=" " (empty space) for the masked editor.
However, when I make changes to the textbox and hit the tab key I expect it to set the cursor at the begining of the masked editor however, it places the cursor after the empty space.
Is there a way to get around this so that pressing tab puts the cursor at the beginning of the masked editor field.
Thanks!
Hello,
I have been looking into your issue and have been trying to reproduce with no success. In my sample the caret is automatically placed in the beginning of the XamMaskedEditor. Here is the xaml snippet I used:
<igEditors:XamMaskedEditor x:Name="xamMaskedEditor2" PromptChar=" "
Mask="###"
HorizontalAlignment="Right"
VerticalAlignment="Top"
Width="100" />
Please let me if you still require assistance on the matter and if so how should I reproduce it on my side.
Sincerely,
Petar Monov
Developer Support Engineer
Infragistics Bulgaria
www.infragistics.com/support
You can repro this scenario with below.
<igEditors:XamMaskedEditor PromptChar =" " HorizontalAlignment ="Left" VerticalAlignment="Top" Width="220" />
How can I overcome this problem ?