skip to Main Content

Show filter value in AgGrid – Reactjs

I'm using a custom CategoryFilter for my categories AgGrid: const columnDefs = [ { field: 'categoryId', headerName: t('category', { ns: 'common' }), cellRendererSelector: (params: ICellRendererParams<IProduct>) => ({ component: CategoryColumn, params: { ...params, defaultLanguage } }), filter: CategoryFilter, floatingFilterComponentParams: { suppressFilterButton:…

VIEW QUESTION
Back To Top
Search