You can get the MRE to reproduce the code CLICKING HERE
I’m working with a Dash Ag Grid, but the project has a requirement:
THE COLUMNS WILL be represented in the ROWS and the values will be represented in the COLUMNS (as you can see in the picture below)
I have already found ways to deal with the style of the cells, but I’m now facing two different issues that I tried to find references in AG-GRID and DASH-AG but without success
Issue 1 - I have one column (row in this case) which has more than 1000 options that can be selected, so I would like to know HOW CAN I ALLOW THE USER TO TYPE AND FILTER THE DROPDOWN?
You can use a custom editor like dmc select in which cause you can provide a limit to the amount of options. You can also allow them to search for the match.
Limiting the default grid select I believe it restricted to AG Grid Enterprise.
If you are using that, then check out the documentation for agRichSelectCellEditor.
Hello Bryan @jinnyzor Thank you for your answer, man!
The issues I’m facing in this project mainly caused because of my project use a TRANSPOSED DATAFRAME which increases the complexity of the implementations I need to do; So it’s not simply set the parameters to the column, but I need to deal with it directly on the agGridFunctions.js
I tried implementing what you suggested, but instead of allowing me to filter when typing, the dropdown options stopped to be rendered
Yeah, I have implemented the DMC_select as you suggested, and it worked as expected
The issue I’m facing now, is caused because of one of my columns has more than 38k options, so it takes some time to load and render the list of options