본문 바로가기

프론트엔드/[그리드] ag-grid

[ag-grid] no rows to show 문구 제거하기

gridOptions 객체에 suppressNoRowsOverlay 키에 true값을 부여하면 됨.

gridOptions의 api를 사용해 처리해도 되지만,

나는 초기화될때 처리하면 됐기에 디폴트 옵션값으로 설정했다.

 

 

참고링크

https://stackoverflow.com/questions/51070840/how-to-avoid-the-no-rows-message-while-loading-data-in-ag-grid

 

How to avoid the "no rows" message while loading data in ag-grid

I have an ag-grid which pulls data from the backend via restful call and routed through NGRX pattern. <ag-grid-angular #agGrid class="ag-theme-fresh" style="width: 100%; height: 100%;" [

stackoverflow.com