khan4019 / tree-grid-directive

Need one or more maintainer for this! comment or email me if you are interested
http://khan4019.github.io/tree-grid-directive/test/treeGrid.html
347 stars 183 forks source link

Expand, Collapse error at root #119

Open bunpbu opened 7 years ago

bunpbu commented 7 years ago

I cant Expand Collapse at root branch (new version) 2016-11-29_9-24-11

SSanjeevi commented 7 years ago

After changing the code: child_visible = visible && (branch.expanded || branch.level < expand_level); at line 395 of tree-grid-directive.js source to this: child_visible = visible && branch.expanded;

it was working fine - but am not sure about what else will break after this. just a work around.