5,019 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
60
views
Streamlit AgGrid - can't update without table flickering
I have an ag grid that contains calcculations that are too complicated for value getters. I want users to be able to update checkboxes/dropdowns in the grid and for the grid to update. Currently, ...
0
votes
1
answer
61
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
37
views
How to set the grid height to normal and pagination row to normal height?
<ag-grid-angular
style="width: 100%; height: 100%;"
class="ag-theme-alpine"
[rowData]="peopleData"
[columnDefs]="agGridColumnDefs"
[...
0
votes
0
answers
35
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
41
views
Issue with ag grid tree data structure V26
I have this configuration for my ag grid tree data :
QuoteLineItemsGrid: GridOptions = {
columnDefs: this.initQuoteLineItemsGrid(),
domLayout: 'autoHeight',
rowSelection: 'single',
sideBar: {
...
None's user avatar
- 9,329
0
votes
0
answers
65
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
2
answers
92
views
How can I detect when the AG Grid filter dialog closes?
I have an AG Grid, implemented in React/Typescript. It automatically updates with new data, and the columns have filters. When new data comes in, the grid reloads with the changes, which closes the ...
1
vote
1
answer
84
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 ...
0
votes
1
answer
216
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
...
1
vote
0
answers
123
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
54
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
1
answer
95
views
How to make Pinned Section Scrollable
I’m working with AG-Grid in an Angular project and encountered a scenario with pinned columns. Specifically, when the combined width of pinned columns exceeds the available grid width, AG-Grid ...
-1
votes
0
answers
69
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
46
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
62
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 ...
danvk's user avatar
- 17.2k