dataSource Object|Array|kendo.data.HierarchicalDataSource
The data source of the widget which is used render nodes. Can be a JavaScript object which represents a valid data source configuration, a JavaScript array or an existing kendo.data.HierarchicalDataSource instance.
If the dataSource
option is set to a JavaScript object or array the widget will initialize a new kendo.data.HierarchicalDataSource instance using that value as data source configuration.
If the dataSource
option is an existing kendo.data.HierarchicalDataSource instance the widget will use that instance and will not initialize a new one.
Example - set dataSource as a JavaScript object
<div id="treeview"></div>
<script>
$("#treeview").kendoTreeView({
dataSource: {
data: [
{ text: "foo", items: [
{ text: "bar" }
] }
]
}
});
</script>
Example - set dataSource as a JavaScript array
<div id="treeview"></div>
<script>
$("#treeview").kendoTreeView({
dataSource: [
{ text: "foo", items: [
{ text: "bar" }
] }
]
});
</script>
Example - set dataSource as an existing kendo.data.HierarchicalDataSource instance
<div id="treeview"></div>
<script>
var dataSource = new kendo.data.HierarchicalDataSource({
transport: {
read: {
url: "https://demos.telerik.com/kendo-ui/service/Employees",
dataType: "jsonp"
}
},
schema: {
model: {
id: "EmployeeId",
hasChildren: "HasEmployees"
}
}
});
$("#treeview").kendoTreeView({
dataSource: dataSource,
dataTextField: "FullName"
});
</script>