开发者

How to refresh the Telerik RadGrid control using JavaScript?

开发者 https://www.devze.com 2023-01-19 05:31 出处:网络
How to refresh the Telerik RadGr开发者_JS百科id control using JavaScript?from telerik documentation:

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消