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

RadToolTipManager After Manual Close page Refresh

5 Answers 133 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Tin
Top achievements
Rank 1
Tin asked on 11 Jan 2012, 04:42 AM
How to refresh page after manual close of RadToolTipManager ? We Created page that using radtooltipmanager .Inside RadToolTip ,we have to save data and want to refresh the page after saving the data. These RadTooltip is inside RadLisView.

Please anybody help me ? I really appreciate .Thanks for yours consideration.

5 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 11 Jan 2012, 12:44 PM
Hello Tim,

You can update the page through AJAX and the RadToolTipManager's TargetControls as explained in this demo.
ToolTip / Tooltipified RadGrid
0
Marin Bratanov
Telerik team
answered on 12 Jan 2012, 12:44 PM
Hello Tin,

You can also use the OnClientHide event of the RadToolTip and RadToolTipManager to call window.location.reload() or any other JavaScript function you may need (e.g. to perform an AJAX request).

You can, alternatively, inject the call to this function from the code-behind of your control. when you need to.


Regards,
Marin
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
0
Alberto Pastorelli
Top achievements
Rank 1
answered on 20 Jun 2012, 03:17 PM
error
0
Alberto
Top achievements
Rank 1
answered on 20 Jun 2012, 03:20 PM
hi.
with 
    <script type="text/javascript">
        function clientHide(sender, eventArgs) {
            window.location.reload();
        }
</script>
works but can you say me how to do this with ajax?
thanks 
0
Marin Bratanov
Telerik team
answered on 21 Jun 2012, 02:01 PM
Hello Alberto,

This isn't related to the tooltip manager in any way and there are different ways to invoke an AJAX request, for example:

- call the __doPostBack() function and pass the unique ID of a button that will perform this request - e.g. a button the user could usually click
- call __doPostBack() with the unique ID of the update panel
- if you are using the RadAjaxManager you can go through its client-side API - the ajaxRequest() method


All the best,
Marin Bratanov
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
ToolTip
Asked by
Tin
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Marin Bratanov
Telerik team
Alberto Pastorelli
Top achievements
Rank 1
Alberto
Top achievements
Rank 1
Share this question
or