This question is locked. New answers and comments are not allowed.
When I set the .Value property of the control using code-behind the .Text property is not consistently updated. I have a video of this and it is too big to attach. Let me know who I can send it to.
RadMaskedNumericInput num = (RadMaskedNumericInput)control; double dbl = 0.0; if ((value == null) || (double.TryParse(value.ToString(), out dbl) == false)) { dbl = double.Parse(DefaultValueByDataTypeName(cell.DataTypeName)); } num.Value = dbl;