Unplanned
Last Updated: 30 Mar 2016 08:51 by ADMIN
ADMIN
Dimitar
Created on: 02 Feb 2016 12:27
Category: Editors
Type: Bug Report
2
FIX. RadMaskedEditBox - the Modified property is not working.
To reproduce:
- Set the mask to numeric.
- Change the value and check the Modified property.

- Workaround:
string oldValue = string.Empty;

void radMaskedEditBox1_LostFocus(object sender, EventArgs e)
{
    if (oldValue != radMaskedEditBox1.Text)
    {
        radMaskedEditBox1.Modified = true;
    }
    else
    {
        radMaskedEditBox1.Modified = false;
    }

    oldValue = radMaskedEditBox1.Text;
}
0 comments