Completed
Last Updated: 29 Apr 2016 06:06 by ADMIN
ADMIN
Anton
Created on: 26 Feb 2013 03:51
Category: Editors
Type: Bug Report
1
FIX. RadMaskedEditBox - has incorrect value if you set values with different length
RadMaskedEditBox - has incorrect behavior if you set values with differed length.

Workaround is to reset the value before to set new one:

C#
RadMaskedEditBox1.Value = null;
RadMaskedEditBox1.Value = "YourText";

VB
RadMaskedEditBox1.Value = Nothing
RadMaskedEditBox1.Value = "YourText"
0 comments