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

Using a ToolTip

1 Answer 53 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Stuart Hemming
Top achievements
Rank 2
Stuart Hemming asked on 05 Jan 2011, 10:59 AM
I want to add some popup help on a tabstrip. The help will be specific to each tab. I can't ad an ID to a TabStrip Tab so how do I associate a ToolTip with one?

-- 
Stuart

1 Answer, 1 is accepted

Sort by
0
Stuart Hemming
Top achievements
Rank 2
answered on 05 Jan 2011, 11:15 AM
Never mind; I've sorted it out for myself.

I changed the tab definition from this ...
<telerik:RadTab Value="Main"
                Text="Event Info"
                PageViewID="pvMain"/>
to this ...
<telerik:RadTab Value="Main">
    <TabTemplate>
        <asp:Label ID="lblTabMain" runat="server" Text="Event Info" />
    </TabTemplate>
</telerik:RadTab>
And then I associated the TooTip with the Label.

On we go...
-- 
Stuart
Tags
TabStrip
Asked by
Stuart Hemming
Top achievements
Rank 2
Answers by
Stuart Hemming
Top achievements
Rank 2
Share this question
or