New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

set_dataSource

Method which can be used to assign data source for the corresponding GridTableView client instance. This data source should be of JSON format which can be serialized by a web service or page method. The method be used for a flat grid or hierarchical grid with HierarchyLoadMode set to Client.

set_dataSource(dataSource)
dataSource Object The source which will be assigned to the respective GridTableView instance.

Example:

function assignDataSource()
{
    var masterTable = $find("<%= RadGrid1.ClientID %>").get_masterTableView();
    masterTable.set_dataSource(<some_data_source_of_the_specified_type_above>);
    masterTable.dataBind();
}
In this article