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

Set Target Control ID.

1 Answer 74 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Freddy
Top achievements
Rank 1
Freddy asked on 03 Apr 2013, 02:34 AM
Hi,

How can I set the RadToolTip Target Control ID to another control's ID from JavaScript?

Thank you,
Freddy.

1 Answer, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 03 Apr 2013, 05:47 AM
Hi Freddy,

Please try the following JavaScript.

JavaScript:
<script type="text/javascript">
    function setToolTipTargetControlID() {
        var radToolTip = $find("<%= RadToolTip1.ClientID %>");
        radToolTip.set_targetControlID("RadButton1");
    }
</script>

Thanks,
Princy.
Tags
ToolTip
Asked by
Freddy
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or