New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
rebind
Updated over 6 months ago
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:
JavaScript
function RefreshGrid() {
var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
masterTable.rebind();
}