본문 바로가기

기타 학습 정리

[ag-grid]삭제 방법

https://www.ag-grid.com/javascript-grid-data-update/

 

ag-Grid

Core feature of ag-Grid supporting Angular, React, Javascript and more. One such feature is Updating Data. Data can be updated in real time. The grid can highlight the change by flashing the cells or by animation inside the cell as the cell refreshes. Vers

www.ag-grid.com

 

여기는 클래스형 컴포넌트 위주로 설명되어 있는데

onGridReady 함수에서 받아온 api 값을 useState로 이용해서 저장하려고 했는데 오류가 나서 그냥 아래와 같이 저장하게 되었다.

 

let gridApi

let onGridReady = (params) => {

gridApi = params.api

}