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

Set Radupload ClearButtons tooltip

1 Answer 53 Views
Upload (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Alpesh
Top achievements
Rank 1
Alpesh asked on 22 Oct 2012, 12:28 PM
Hi,
 How do i set tooltip on Clear button for clear?

Thanks.

1 Answer, 1 is accepted

Sort by
0
Accepted
Kate
Telerik team
answered on 25 Oct 2012, 10:32 AM
Hello Alpesh,

I would suggest that you try using our RadToolTip control as demonstrated in the following code:
<script type="text/javascript">
            function pageLoad() {
                var radToolTip = $find("<%= tooltip1.ClientID %>");
                radToolTip.set_targetControlID("upload1clear0");
                radToolTip.set_text("This is the new tool tip text to display");
            }
        </script>

markup:
<telerik:RadUpload runat="server" ID="upload1" ControlObjectsVisibility="All">
        </telerik:RadUpload>
        <telerik:RadToolTip runat="server" ID="tooltip1" TargetControlID="ClientID" IsClientID="true">
</telerik:RadToolTip>

Regards,
Kate
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Upload (Obsolete)
Asked by
Alpesh
Top achievements
Rank 1
Answers by
Kate
Telerik team
Share this question
or