Should the numeric web mask work with ValueConverters?
this is the error i got
The new assigned value: 0 is not of specified type: Double
Hi spicish22,
The XamWebNumericEditor control requires the numeric type which is specified at ValueType property.
By default it is - Double. You can set double numbers in this way:
numericEditor.Value = 23d;
numericEditor.Value = (Double) 23;
The most complicated way is using a value converter. The control can work with converters.
Regards,
Doychin Dochev