Hello Morten,
Here is how you should approach the task:
1. Wrap your RadGrid into a regular <asp:UpdatePanel>
2. In the OnClientHide of the tooltip, all you need to do is "submit" the update panel, which can be done like this:
function refreshGrid() |
{ |
__doPostBack("<%= RadGridUpdatePanel.ClientID %>"); |
} |
All the best,
Tervel
the Telerik team