RadControls for ASP.NET AJAX
Method which will force rebind of the grid and will refresh its state using internally
the fireCommand() client-side method.
The action will be performed on the server with ajax request in case the grid is ajaxified with
RadAjaxManager/RadAjaxPanel or ASP:UpdatePanel.
Example:
CopyJavaScript
function RefreshGrid() {
var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
masterTable.rebind();
}