RadControls for ASP.NET AJAX 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.
Example:
CopyJavaScript
function repaintGrid(sender, args) {
var grid = $find("<%=RadGrid1.ClientID %>");
grid.repaint();
}