Hi,
I added underline FontInfo on the server side by doing:
The above codes didn't remove the text decoration. Please advise. Thanks,
Peichung
I added underline FontInfo on the server side by doing:
radTextBox.Font.Underline =
true;
I then would like to remove the underline text decoration in the client-side OnValueChanging handler:
function(sender, eventArgs) |
{ |
if (eventArgs.get_newValue() == "") |
eventArgs.set_cancel(true); |
sender.get_styles().EnabledStyle[0] += "text-decoration: none;"; |
sender.updateCssClass(); |
} |
The above codes didn't remove the text decoration. Please advise. Thanks,
Peichung