Hello,
I'm trying to use jQuery to bind to RadGrid and I am getting get_masterTableView() is not a function whenever I try to bind the results of my ajax call.
I am using the following;
I'm trying to use jQuery to bind to RadGrid and I am getting get_masterTableView() is not a function whenever I try to bind the results of my ajax call.
I am using the following;
| function onSuccess(result) { |
| var grid = $('#<%= RadGrid1.ClientID %>'); |
| var tableView = grid.get_masterTableView(); |
| tableView.set_dataSource(result); |
| tableView.dataBind(); |
| $('#<%= RadAjaxLoadingPanel1.ClientID %>').hide("<%= RadGrid1.ClientID %>"); |
| } |