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

repaint

Method which re-renders the grid on the client. Useful when you would like to refresh the grid appearance on the client and synchronize the column settings when scrolling and static headers are enabled and the control is nested in another container.

repaint()

Example:

function repaintGrid(sender, args) {
    var grid = $find("<%=RadGrid1.ClientID %>");
    grid.repaint();
}
In this article