views:

32

answers:

2

How to referesh Telerik:radgrid contorl using Javascript ?

A: 

from telerik documentation:

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

By using client binding for the grid - check out this help document.

Dick Lampard