I'm doing some work in a javascript function and part of it is to remove (or add) an attribute from a RadTextBox. Looking at the list of properties and methods on the Client Object page, I don't see how to do this. I've seen forum posts reference the _textboxelement property of RadTextBox control like so:
I was wondering if this would work. If so, how?
I'm trying to add or remove the data-bind attribute on a textbox.
Thanks.
<script type="text/javascript"> function setToolTip() { var RadTextBox = $find("<%= RadTextBox1.ClientID %>"); // Get the textbox client object RadTextBox._textBoxElement.title = "Changed Tooltip"; } </script>I was wondering if this would work. If so, how?
I'm trying to add or remove the data-bind attribute on a textbox.
Thanks.