Good morning,
I'm writing because of problems with making RadMaskedTextBox to be readonly from client side (jQuery). I'm able to set readonly attribute on standard RadTextBox without problems.
or
TextBox1._element.readOnly = true;
Same steps are not working for RadMaskedTextBox control...
Please help me to solve this issue.
Best regards
Vasssek
I'm writing because of problems with making RadMaskedTextBox to be readonly from client side (jQuery). I'm able to set readonly attribute on standard RadTextBox without problems.
function setReadOnly()
{
var TextBox1 = $find("<%= RadTextBox1.ClientID %>");
TextBox1._textBoxElement.readOnly = true;
}
function clearReadOnly()
{
var TextBox1 = $find("<%= RadTextBox1.ClientID %>");
TextBox1._textBoxElement.readOnly = false;
}
or
TextBox1._element.readOnly = true;
Same steps are not working for RadMaskedTextBox control...
Please help me to solve this issue.
Best regards
Vasssek