My last attempt was
function refreshGrid()
{
$find("<%= RadGrid1.ClientID %>").get_masterTableView().rebind();
}
Update information. I'm using a usercontrol in DotNetNuke6. I've researched and it seems that its mostly an issue with the radAjaxManager. I'm still haveing problems with putting the manager on the parent page programmatically from the user control. I'm using
Dim manager As New RadAjaxManager()
manager.ID = "RadAjaxManager1"
Me.Page.Form.Controls.Add(manager)
But I don't think it is getting registered. If I can't get this last part to work I'm going to have to redo the entire structure.
As a hack work around a put a page refresh in the function OnClientClose
window.location.reload(true);
It's not very smooth but gets the job done for now. Is there a better way?
Added information: I'm moving this question over to the Ajax forum since it more of an issue with the RadAjaxManager than with the RadGrid. Sorry for the post but I did not see a way to delete.
Thanks