|
$(function () {
var data = ej.DataManager({
});
$("#treegrid").ejTreeGrid({
dataSource: data,
});
}); |
|
// Read data from the JSON file
$jsonData = file_get_contents(“http://Syncfusion.com/***/**/treeGridData.json”);
// Decode the data as JSON data
$treeGridData = json_decode($jsonData, true);
function getData(){
echo json_encode($treeGridData);
} |
|
$(function () {
var data = ej.DataManager({
});
$("#treegrid").ejTreeGrid({
dataSource: data,
});
}); |