Replies: 2 comments 2 replies
-
Study the following examples gridjs
glide-data-grid
ag-grid (TODO) |
Beta Was this translation helpful? Give feedback.
1 reply
-
I tried the most basic implementation as follows: class AgGrid(rx.Component):
library = "ag-grid-react"
tag = "AgGridReact"
columnDefs: rx.Var[List[Dict[str, Any]]]
rowData: rx.Var[List[Dict[str, Any]]] This works if we also add the stylesheets: app = rx.App(
stylesheets=[
"https://cdn.jsdelivr.net/npm/ag-grid-community/styles/ag-grid.css",
"https://cdn.jsdelivr.net/npm/ag-grid-community/styles/ag-theme-alpine.css",
],
) However, the table ends up being invisible, even though all the data is there if I go and inspect the HTML. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am an streamlit user for 2 years, heard about reflex yesterday and start learning because it looks promising due to its performance and deployment features.
Most apps I built use AgGrid (https://www.ag-grid.com/) component for data application,
will aggrid be on the roadmap?
Willing to help out with its integration as I learn more about reflex.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions