ag-grid-vue line selected by default

  that.$nextTick(() => {
              that.gridListOptions.api.onGroupExpandedOrCollapsed();
              that.$nextTick(() => {
                that.gridListOptions.api.forEachNode(node => {
                  if (node.data.Id === data.requestLoading.Id) {
                    node.setSelected(true, true);
                  }
                });
              });
            });

 

Guess you like

Origin www.cnblogs.com/LFxanla/p/11082732.html