eachRow on treeetable with all=true does'nt reach closed rows ?

,webix.version=“3.0.1”

$$(‘treeGroupe’).eachRow(function (r) {
var e = this.getItem(r);
console.log(e);

        }, true);

closed row/branch are not reached. (Version 3.0.1) ???

Try to use

$$('treeGroupe').data.each(handler);

I did : $$(‘treeGroupe’).data.each(handler,this,true);