Hello,
Is there any way I can read ALL rows of aggregation ‘rows’ in an gantt chart in my UI5 application (independent of visible)?
var visibleRows = oGanttChartWithTable.getRows();
console.log(visibleRows.length);
In my Model I have also 13 elements.
oGanttChartWithTable.bindAggregation("rows",
{
path: "test>/root",
parameters: {
arrayNames: ["children"]
}
}
);
It’s always 11 or less (visible rows in GanttChartTableTree) when I use:
for (var i = 0, len = rows.length; i < len; i++) {
...
}
Regards
Katja