Question title
How to progressively load sub-nodes in a pivot table using the VTable component?
Problem description
Using the VTable table component, how to gradually load sub-nodes in the pivot table, click the expand button of the parent node, and then dynamically load the information of the sub-node
Solution
VTable provides setTreeNodeChildren API, which is used to update the sub-node status of a node in the pivot structure and can be used to implement progressive loading function
- Dimension tree configuration
Normally, in the dimension tree (columnTree/rowTree), thechildrenattribute is an array, which is the sub-node information of the node
{
dimensionKey: 'name',
value: 'a',
children: [
{
dimensionKey: 'name-1',
value: 'a-1',
children: [
// ......
]
},
// ......
]
}</br>
How to dynamically load sub-node information, you can configure the children property to true . At this time, the node will be displayed as the parent node in the table, but clicking the expand button in the cell will trigger relevant events, but the table will not have any active changes.
- Monitoring events
After the expand button is clicked, theVTable. ListTable.EVENT_TYPEevent will be triggered. You need to listen to this event and use thesetTreeNodeChildrenAPI to update the sub-node information and the corresponding increased data
const { TREE_HIERARCHY_STATE_CHANGE } = VTable.ListTable.EVENT_TYPE;
instance.on(TREE_HIERARCHY_STATE_CHANGE, args => {
if (args.hierarchyState === VTable.TYPES.HierarchyState.expand && !Array.isArray(args.originData.children)) {
setTimeout(() => {
const newData = [
// ......
];
const children = [
{
dimensionKey: 'name-1',
value: 'a-1',
},
{
dimensionKey: 'name-1',
value: 'a-2'
}
];
instance.setTreeNodeChildren(children, newData, args.col, args.row);
}, 200);
}
});</br>
Code example
demo:https://visactor.io/vtable/demo/table-type/pivot-table-tree-lazy-load
Related Documents
Related api: https://visactor.io/vtable/option/PivotTable#rowHierarchyType ('grid'% 20% 7C% 20'tree ')
Tutorial: https://visactor.io/vtable/guide/table_type/Pivot_table/custom_header
github:https://github.com/VisActor/VTable