ember-timetree
ember-timetree copied to clipboard
Is there a way to default the rows as collapsed?
I'd rather have my user expand what they want to look at versus having them all expanded by default. Any option I can toggle for this behavior?
There are a ton of options, but that is not one of them! Seems like a reasonable one to add.
A workaround in the meantime might involve calling TimetreeView.toggleNode
after initial render. I haven't given it a try.
topLevelNodes.forEach(function(n) {
view.toggleNode(n);
});