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

Setting tab tooltip client-side

1 Answer 71 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
QuickDox
Top achievements
Rank 1
QuickDox asked on 30 Mar 2010, 03:02 PM

1 Answer, 1 is accepted

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

Hi Mr Christopher,

I used following client code in order to set the tooltip for the tab. Give a try with this code.

JavaSciprL:

 
<script type="text/javascript">  
    function setToolTip() {  
        var tabStrip = $find('<%= RadTabStrip1.ClientID %>');  
        var item = tabStrip._findItemByText("Customer");  
        item.get_element().title = "My Tooltip";  
    }  
</script> 

-Shinu.

Tags
TabStrip
Asked by
QuickDox
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or