New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

rebind

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.

rebind()

Example:

function RefreshGrid() {
    var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
    masterTable.rebind();
}
In this article