我需要在ng-grid的单个列中显示一组分层数据,并使用'+'展开/折叠父行。
我看过它的分组功能,但似乎没有为我做这个工作。
我的数据如下:
{
{name: 'Parent 1', children: {}},
{name: 'Parent 2', children: {{name: 'Child 1'}, {name: 'Child 2'}, {name: 'Child 3'}}},
{name: 'Parent 3', children: {}},
}
我希望它在网格中显示如下,在同一列中:
Parent 1
Parent 2
Child 1
Child 2
Child 3
Parent 3
使用ng-Grid实现此目标的最佳方法是什么?我应该为此使用替代的json对象吗?
提前致谢
答案 0 :(得分:2)