5,035 questions
0
votes
0
answers
27
views
How to display an array in an ag grid cell
I want to display an array of values in an aggrid cell.
I could use the cellRenderer in the column definition to implode the array of values:
cellRenderer: params => params.value.join('<br>')
...
0
votes
0
answers
27
views
Ag-grid-angular dont consider row for any filter if the row as a propoert set to true
I want specific rows to skip ag-grid's default filter function if they are having isDataBar property set to true.
I am using below gridOptions, but it's filtering out even the rows having isDataBar
...
0
votes
0
answers
52
views
How to customise keyboard navigation of AgGrid in an Angular application
Right now when I click on tab focus moves to next cell of the ag grid, I want to implement navigation in such a way that
if focus is on column header(not last), the focus should move to next column ...
0
votes
0
answers
31
views
setting new columnDefs in angular ag-grid is not making the grid change
I have recently started diving into all of the nuances of ag grid (version 31.3.2) and its pretty particular order of operations it expects things to happen in and im running into an issue where using ...
0
votes
1
answer
167
views
AG Grid v34 agSetColumnFilter – "Select all" with defaultToNothingSelected: true no longer filters out empty/NULL values
After upgrading AG Grid from version 33 to 34, I noticed a change in the behavior of the agSetColumnFilter.
Setup:
Column filter: agSetColumnFilter
Config option: defaultToNothingSelected: true
...
0
votes
0
answers
49
views
How to make number type cell editors accept cell expressions?
agNumberCellEditor accept doesn't accept cell expressions.
This expression =9+1 resolves to 10 with agTextCellEditor but not with agNumberCellEditor. Not able to type "=" into the number ...
0
votes
0
answers
63
views
NG0901 on ag-grid when calling query Params
i think i got far too lost and maybe i need someone to help me out on this. I will try to provide all the code snippets needed.
I have several similar pages, so it's kind of scrapped together, on each ...
0
votes
0
answers
60
views
Adjust submenu close delay in ag-grid
I'm using ag-grid. When you right-click, I'm finding that submenus close too quickly. This makes it hard to mouse over from the main menu item to the submenu. Here's a screen recording of me ...
0
votes
0
answers
44
views
ipyaggrid cell style conditional coloring
ipyaggrid.__version__ = 0.5.4
I want to color code some cells in a column called name if the cell value equals 'xyz'.
The code below is suggested by ChatGPT but it doesn't work. ipyaggrid simply ...
0
votes
0
answers
57
views
Cell Renderers on AG Grid detail subgrid
I've been implementing the Master/Detail functionality on an existing AG Grid and the cellRenderers don't seem to be getting applied to the cells in the detail grid. Looking at the documentation I ...
0
votes
0
answers
42
views
Is there a way to utilize built-in cell renderers within a custom one?
I am looking for a way to add validation icons (warning, error with tooltips with details on the problem) to each cell. We have a table with different kind of data, formatters and custom cell ...
0
votes
0
answers
51
views
Ag grid advanced filter in viewport grid
I am trying to enable advance filter in ag grid with viewport row model, but I dont see the advance filter input box and the builder in the grid
codesandbox: https://codesandbox.io/p/sandbox/viewport-...
0
votes
1
answer
116
views
Ag-grid cannot change dropdown value. It always goes back to its pre-state
I have ag-grid and one column is dropdown (name of column is Color). I have problem when changing the value of the dropdown. It always goes back to its pre-state. For example below. The first record ...
0
votes
0
answers
70
views
Ag-grid's advance filtering not working with datetime column
I have a column with columnDef as -
const expiryDateColDef = {
colId: 'expiryDate',
headerName: 'Expiry Date',
field: 'expiryDate',
filter: 'agDateColumnFilter',
cellDataType : '...
1
vote
1
answer
85
views
AG Grid CSS (data-ag-global-css) removed on drawer close in Module Federation remote, but not in host
I'm working with Webpack Module Federation and React, and I’m running into an issue where AG Grid's CSS gets removed from the DOM when its component (inside an Ant Design Drawer) is unmounted.
🔧 ...
0
votes
0
answers
52
views
Issues with Language Change, Theme Switching, and Data Refresh Outside Component
Now, when users change the language of the app, I need to destroy the current grid, after saving the applied filters of the actual grid by the user, and then create a new grid. However, this process:
...
0
votes
0
answers
117
views
Ag-Grid how can I have certain columns stop editing when focused out?
I want to enable a feature that lets users stop editing a cell if they click anywhere outside the cell (outside the grid as well). I know this can be enabled via 'stopEditingWhenCellsLoseFocus', but ...
0
votes
0
answers
52
views
Remove 'Column Filter' option from column header menu in Ag grid
I am using Ag grid for table rendering. I want to remove this 'Column Filter' from the column header menu. I have custom filter enabled. So I dont want to show this Column Filter in the header menu
I ...
0
votes
0
answers
278
views
How to set a global light / dark theme?
We are using AgGrid and AgChart in our Angular application, and we have a button in the navbar that switches the theme between light and dark. This button applies the theme globally.
For AgGrid, it ...
0
votes
0
answers
105
views
Custom header checkbox fully accessible to keyboard users (Tab)?
I'm using AG Grid in a Salesforce LWC project and have implemented a custom header checkbox for select-all functionality. The checkbox is rendered in the header using a custom class (not AG Grid’s ...
1
vote
0
answers
49
views
How to implement date and time filter together for ag grid table column?
I want to filter the column in ag grid for date and time together ag grid doesnot support date and time filter together.
I tried using only time but the filtering is not happening in ag grid it is not ...
2
votes
0
answers
42
views
AG-Grid Custom sorting based on a list
I am trying to custom sort a grouped AG-Grid on the sport column based on a list SPORT_ORDER = [“Swimming”, “Gymnastics”, “Speed Skating”] but am unable to setup a comparator for it.
I am not sure if ...
0
votes
0
answers
49
views
AG Grid: Hide rows with eye icon and show "Show hidden rows (X)" inline between rows
AG Grid: Hide rows with eye icon and show "Show hidden rows (X)" inline between rows
I'm building a feature in AG Grid where users can hide individual rows using an eye icon in an "...
0
votes
1
answer
62
views
cells didn't take update when i get into it with tabulation
i have an issue with cells in agGrid. Actually when i am editiing a cell1, and i hit tabulation, somme calculation are made to put value in cell2, but with tabulation from cell1 to cell2, the cell2 is ...
0
votes
0
answers
52
views
AG Grid: headerCheckbox is only available if using 'clientSide' or 'serverSide' rowModelType, you are using infinite
Using AG-Grid (angular). We are getting warning in browser console.
Warning Text:
"AG Grid: headerCheckbox is only available if using 'clientSide' or 'serverSide' rowModelType, you are using ...