agGrid 모든 데이터 가져오기 agGrid에는 전체 데이터를 가져오는 옵션이 없어서 전체 노드를 가져온 후 for문으로 데이터를 추출해야합니다. 1. forEachNode getAllRows() { let rowData = []; this.gridApi.forEachNode(node => rowData.push(node.data)); return rowData; } 2. getRenderNodes this.gridApi.getRenderedNodes() 카테고리 없음 2023.04.10