私はデータバインドさで解決。ここに私の最新コードがあります: また、telerikフォーラムをチェックしてください:http://www.telerik.com/forums/gantt-chart-expand-event-or-lazy-loading-support
var expandedIds = [];
var returnWithInnerDataIdList= [];
ganttChart.bind("dataBound", function(e) {
ganttChart.element.find("tr[data-uid]").each(function (e) {
var dataItem = ganttChart.dataSource.getByUid($(this).attr("data-uid"));
if (dataItem.expanded == true && jQuery.inArray(dataItem.id, expandedIds) < 0) {
expandedIds.push(dataItem.id);
if (dataItem.Level == 3) {
returnWithInnerDataIdList.push(dataItem.id);
loadDataWithNewIds();
}
}
else if (dataItem.expanded == false && jQuery.inArray(dataItem.id, expandedIds) >= 0) {
expandedIds = jQuery.grep(expandedIds, function (value) {
return value != dataItem.id;
});
}
});
});