How to refresh the Telerik RadGr开发者_JS百科id control using JavaScript?
from telerik documentation:
function RefreshGrid()
{
var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
masterTable.rebind();
}
By using client binding for the grid - check out this help document.
精彩评论