Hello,
I am getting data as Json from my webserver including to TreeGrid like so:
$.ajax({
beforeSend: function (request) {
},
type: 'GET',
url: url,
success: function (data) {
$('#TreeGridContainer').ejTreeGrid(
{
dataSource: data.dataList,
childMapping: "children",
columns: data.columnList,
treeColumnIndex: 1
}
);
}
}).done(function () {});
But my treegrid shows without collapse arrow buttons. The text is bolder on higher level (in tree structure), but after click it is not collapsed at all. I want to ask, if something has to be moreover specified.
Thank you,
Rasovsky.