Posted 14 September 2017, 12:05 pm EST
Hi, I am working on a wijmo felx grid, in the project i am working the requirements are the following:
the grid needs 3 hierarchical levels
the main Grid is going to contain a wijmo detail grid
the detail grid needs a nested detail grid
In this way we want to cover the 3 hierarchical levels.
we are receiving this object from the backend:
[ { assetName: 'Laptop100', company: 'My company', date: '06/01/2016', items: [ { itemName: 'Laptop', brand: 'Unknown', locations: [ { locationName: 'Location name', height: '10inches', value: 3 } ] } ] } ]
we have tried nesting the wijmo detail grids, but we are not able to accomplish the desired grid,
we cannot use the child path property of the wijmo grid due to the css framework we are using.
wj-flex-grid items-source="assetsList"> wj-flex-grid-column ng-repeat="column in assetsColumns" binding="{{::column.binding}}" header="{{::column.header}}" allow-dragging="{{::column.allowDragging}}" min-width="{{::column.minWidth || '150'}}">/wj-flex-grid-column> wj-flex-grid-detail detail-visibility-mode="detailMode"> wj-flex-grid items-source="$item.assetItems" headers-visibility="Column"> wj-flex-grid-column ng-repeat="assetColumn in itemsColumns" binding="{{::assetColumn.binding}}" header="{{::assetColumn.header}}"> /wj-flex-grid-column> wj-flex-grid-detail detail-visibility-mode="detailMode"> wj-flex-grid items-source="locations" headers-visibility="Column"> wj-flex-grid-column ng-repeat="locationColumn in locationsColumns" binding="{{::locationColumn.binding}}" header="{{::locationColumn.header}}"> /wj-flex-grid-column> /wj-flex-grid> /wj-flex-grid-detail> /wj-flex-grid> /wj-flex-grid-detail> /wj-flex-grid>
Is there any option we can try to accomplish the desired behavior as its shown in the image attached using detail grid?