This is a migrated thread and some comments may be shown as answers.

Client-side Tooltip for RadTextBox

1 Answer 166 Views
Input
This is a migrated thread and some comments may be shown as answers.
Tye
Top achievements
Rank 1
Tye asked on 05 Mar 2010, 05:40 PM
I don't see in the documentation a client-side method to update the Tooltip property of the RadTextBox. Is there a way to do this? I'm not using the RadToolTipManager in this case. I was hoping for something along the lines of:

myRadTextBox.set_tooltip("myToolTipString");

Similar to setting the value (set_value("")). Any thoughts?

Thanks,
Tye

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 08 Mar 2010, 08:18 AM

Hello Tye,

I tried following client side code in order to change the tooltip of RadTextBox.

JavaScript:

 
<script type="text/javascript">  
    function setToolTip() {  
        var RadTextBox = $find("<%= RadTextBox1.ClientID %>");  // Get the textbox client object  
        RadTextBox._textBoxElement.title = "Changed Tooltip";  
    }  
</script> 

-Shinu.

Tags
Input
Asked by
Tye
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or