1,079 questions
1 vote
1 answer
74 views
How do I make the filter ignore case and spacing?
I've inherited some React code which uses AG Grid; I haven't delved into it much because it has pretty much just worked, but now I'm stumped on an issue. I have a table with a postcode field, defined ...
1 vote
0 answers
119 views
Why does AG Grid not allow Backspace to act as a delete key on Windows/Linux?
Current behavior Windows/Linux: Pressing Backspace on a selected cell starts cell editing. macOS: Pressing Backspace on a selected cell deletes the cell content. Expected behavior In standard ...
0 votes
0 answers
53 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
37 views
AG-Grid lag between cell selection and row selection
I have AG-Grid with high frequency updates and I am using transaction api from AG-Grid. Everything seems to work fine e.g. using keyboard to move cell and cell selection when clicking the cell both ...
0 votes
0 answers
20 views
Ag Grid enterprise edition -serverside rowwModel unit test case with Jest issue
i have a pretty simple code with rowModelType=server side UI is working as expected When tried unit testing with jest, can't assert on any cell data nothing is visible in test file When tried to log ...
0 votes
1 answer
83 views
How to disable caching and fetch group parent rows on every page change?
I'm using AG Grid with the server-side row model, along with pagination and row grouping. Playground - https://plnkr.co/edit/VRqkoRfryOeoJgVl?open=index.jsx&preview I want the grid to fetch data ...
0 votes
0 answers
58 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
93 views
AG Grid: How to filter date values when displayed in localized format using Date.toLocaleDateString()
I am using ag-grid in a React application and have a date column where the data is stored as YYYY-MM-DD strings. I display the dates in a localized format (e.g., MM-DD-YYYY for US) using a ...
0 votes
1 answer
183 views
Can you make a cell span 2 rows and columns with AG Grid (React)?
I have seen examples of row spanning and column spanning, but have yet to find an example of the two combined anywhere. I have looked through the documentation, here are the separate links: https://...
0 votes
0 answers
76 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 : '...
0 votes
0 answers
82 views
Ag grid: SSRM row grouped data render as flat view
In AgGrid SSRM.I am using group display=multiple columns. I have a use case where I have to render the grouped data as flat view instead of nested(parent-child). How to achieve this behavior?
2 votes
1 answer
99 views
Ag-Grid ReactJS checkbox cell with aligned center items has issue when cell is clicked using TypeScript
I have a 3-column grid. The first column is a checkbox aligned in the center cell, which is editable (can be checked/unchecked). My issue is that when I click the cell outside the checkbox item, the ...
0 votes
1 answer
178 views
Retain edited cell value onblur or click away ag-grid reactjs using typescript
I have grid using ag-grid reactjs typescript that has 3 columns. The 3rd column named "Value" is editable. I was able to edit the value but when onblur event, I lost the edited value and the ...
1 vote
0 answers
54 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 ...
0 votes
0 answers
50 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 "...