我正在使用 RadTextBox 控件,我需要在客户端根据某些条件设置重置 MaxLength 属性。
if(maxLengthToSet == 4){
txtBox.set_maxLength(4);
}
else{
// reset maxlength so that it can accept up-to limits of a RadTextBox
}
我们如何重置 maxLength 属性或从文本框中删除此属性。
我正在使用 RadTextBox 控件,我需要在客户端根据某些条件设置重置 MaxLength 属性。
if(maxLengthToSet == 4){
txtBox.set_maxLength(4);
}
else{
// reset maxlength so that it can accept up-to limits of a RadTextBox
}
我们如何重置 maxLength 属性或从文本框中删除此属性。