All Tags »
MaskedTextBox Binding (RSS)
Sorry, but there are no more tags available to filter with.
-
found the solution myself. Apparently, I need to add the Text attribute into the MaskedTextBox control. see below.
<xcdg2:MaskedTextBox Mask=''0000''
PromptChar=''_''
AllowPromptAsInput=''False''
ResetOnPrompt=''False''
ResetOnSpace=''False''
Height=''Auto''
Text=''{xcdg2:CellEditorBinding}
/>
The sample code from the ...
-
Hi,
What is the mask for integer values i.e+ve/ -ve numbers
When I give the mask as #99 it doesn't bind the -ve values.
At the backend when I enter -ve numbers it returns null though it returns the actual value for +ve numbers.
Please help me with this.
Thanks,
Ajitha
-
Hi, I'm trying to bind a MaskedTextBox width a string, but I I do:
<xceed:MaskedTextBox Value=''{Binding Path=Factura, Mode=TwoWay}'' ValueDataType=''{x:Type s:String}'' Mask=''>L-0000-00000000'' />
The control do not set the changes in the model.
And if I do ...