Hi Telerik Community,
I have two RadGrids sitting on a page, both inside a RadAjaxPanel. When I have RadWindow close, my add_close function (oWnd.add_close(RefreshAfterMatch);) will only refresh one of the two grids (perDiemBookingsRadGrid). Here is my function:
Any ideas on how to get both grids to rebind?
Thanks,
Joe
I have two RadGrids sitting on a page, both inside a RadAjaxPanel. When I have RadWindow close, my add_close function (oWnd.add_close(RefreshAfterMatch);) will only refresh one of the two grids (perDiemBookingsRadGrid). Here is my function:
function RefreshAfterMatch() { var matchMasterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView(); var pdMasterTable = $find("<%= perDiemBookingsRadGrid.ClientID %>").get_masterTableView(); matchMasterTable.rebind(); pdMasterTable.rebind(); }Any ideas on how to get both grids to rebind?
Thanks,
Joe