Skip to Content
0
Former Member
May 23, 2016 at 09:00 AM

How can I get all rows of aggregation ‘rows’ in an gantt chart?

91 Views

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