-
It would be great if there is an example of operating the table, such as ag-grid? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
It looks like ag-grid has some React bindings. You could probably just use it out of the box: import idom
ag_grid = idom.web.module_from_template("react", "ag-grid-react")
AgGridColumn, AgGridReact = idom.web.export(ag_grid, ["AgGridColumn", "AgGridReact"]) There may be some limitations, but from what I can tell basic things should just work. |
Beta Was this translation helpful? Give feedback.
-
I'm also working on a complete rewrite of the documentation. It'll probably be a while before I get to add more advanced examples. |
Beta Was this translation helpful? Give feedback.
-
Forgive my ignorance. under your guidance, I still can't make it work. How to write the correct code?
|
Beta Was this translation helpful? Give feedback.
It looks like ag-grid has some React bindings. You could probably just use it out of the box:
There may be some limitations, but from what I can tell basic things should just work.