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

Tooltipupdateeventsargs value field

1 Answer 81 Views
Window
This is a migrated thread and some comments may be shown as answers.
Chris
Top achievements
Rank 1
Chris asked on 25 Feb 2009, 04:24 PM
Hi,

How and where is the value  field of the  tooltipupdateeventsargs set?

http://www.telerik.com/help/aspnet-ajax/telerik.web.ui-telerik.web.ui.tooltipupdateeventargs-value.html 

I am unable to locate any information on how to use this field other then the link above.  If there is a demo please point me at it. 

Thanks,
Dean

1 Answer, 1 is accepted

Sort by
0
Tsvetie
Telerik team
answered on 02 Mar 2009, 04:48 PM
Hi Dean,
The value of the Value property of the ToolTipUpdateEventArgs class is actually the Value that you set for the TargetControl in the TargetControls collection of the RadToolTipManager. For example:

<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server"
    <TargetControls> 
        <telerik:ToolTipTargetControl TargetControlID="Label1" Value="1" /> 
        <telerik:ToolTipTargetControl TargetControlID="Label2" Value="2" /> 
        <telerik:ToolTipTargetControl TargetControlID="Label3" Value="3" /> 
    </TargetControls> 
</telerik:RadToolTipManager> 

or:
this.RadToolTipManager1.TargetControls.Add(image.ClientID, currentRow.Row["ProductID"].ToString()true); 

We use this property in a lot of our examples:

Greetings,
Tsvetie
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Window
Asked by
Chris
Top achievements
Rank 1
Answers by
Tsvetie
Telerik team
Share this question
or