We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi. Is it possible to filter a text column? It is very common tables displaying text and eventually data such as type, category, status (enums).
{ "headerName":"country", "field":"country", "type":[ "textColumn", "textColumnFilter" ] }
I found only how to filter numeric colums. Ex.:
{ "headerName":"age", "field":"age", "type":[ "numericColumn", "numberColumnFilter" ] }
The text was updated successfully, but these errors were encountered:
This sort of construct worked for me (to enable text filtering on my column called Suffix)
gb = GridOptionsBuilder.from_dataframe(samplesdf) gb.configure_default_column() gb.configure_column("Suffix", filter="agTextColumnFilter") agdata = AgGrid(samplesdf, gridOptions=gb.build())
Sorry, something went wrong.
No branches or pull requests
Hi.
Is it possible to filter a text column?
It is very common tables displaying text and eventually data such as type, category, status (enums).
{ "headerName":"country", "field":"country", "type":[ "textColumn", "textColumnFilter" ] }
I found only how to filter numeric colums. Ex.:
{ "headerName":"age", "field":"age", "type":[ "numericColumn", "numberColumnFilter" ] }
The text was updated successfully, but these errors were encountered: