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