-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
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
Implement a Dash component for ITables/DataTables #245
Comments
Hey @AllanJard, I have a prototype for this that kind of works. One question for you. Usually my tables have complex headers, so I define the table header in HTML. In the context of
I would prefer to avoid using I have found this example where the columns are created directly from the code, and I have been able to use that in |
There is no ability using the DataTables API to construct a complex header at this time I'm afraid. It is something I've pondered over, but never come up with an API that I'm happy with, and is of a decently small size to fit in. Can you use standard DOM methods, rather than writing in the plain HTML? That would be safer. |
No worries! Thanks for you quick answer! Well currently I use Pandas' HTML conversion to get the table header, that saves me the burden of having to write it myself. I am not familiar with DOM methods, but maybe in the context of React I could use something like this example, I will keep that in mind. |
It would be great to be able to use ITables/DataTables in the context of a Dash by Plotly application.
The text was updated successfully, but these errors were encountered: