This question is locked. New answers and comments are not allowed.
I have defined a masked currency column in a RadGridView that works properly once in edit mode, however, when a user tabs to the column they must type the first number they wish to enter twice. The first number puts the column in edit mode but should go into edit mode right away as it does when I use the GridViewDataColumn. Is there a setting I am missing to accomplish this?
<
telerik:GridViewMaskedTextBoxColumn
UniqueName
=
"InvoiceViewInvoiceDebit"
x:Name
=
"InvoiceViewInvoiceDebit"
Header
=
"Debit"
IsReadOnly
=
"False"
IsCustomSortingEnabled
=
"False"
MaskType
=
"Numeric"
Mask
=
"c"
DataMemberBinding
=
"{Binding DebitAmount, StringFormat=\{0:c\}}"
/>