Answers for "set radgrid datasource clientside"

0

set radgrid datasource clientside

//need to clear first the rad client datasource before fetching updated data
$find("<%=radClientDatasourceID=%>").set_data("");
$find("<%=radClientDatasourceID=%>").fetch(function(args){

$find("<%=radgrid=%>").get_masterTableView().set_dataSource(args.get_data);
$find("<%=radgrid=%>").get_masterTableView().dataBind();
});
Posted by: Guest on May-25-2021

Code answers related to "set radgrid datasource clientside"

Browse Popular Code Answers by Language