Marc Wouts
Marc Wouts
Thanks for asking! Indeed DataTables does have an [Editor](https://editor.datatables.net/). Unlike the rest of DataTables, the editor requires a [subscription](https://editor.datatables.net/purchase/index?currency=usd), do you think you would take one if we gave access...
Hey @Norlandz , that's a great question and actually I often wonder how to do that. Your question is actually for the https://datatables.net/ project - the underlying JavaScript library that...
Hey @Norlandz , possibly the most convenient workaround is to give a name to your index (see below). Alternatively, the ordering component can be deactivated with `columnDefs=[{"targets":"_all", "orderable": False}]`. Let...
Thanks @Norlandz ! It might make sense to ask for a fix in https://github.com/DataTables/DataTablesSrc, can I let you open an issue or even PR there if you feel that's the...
I am reopening this issue as now with `datatables==2.0.1` the index name trick does not work anymore.
I got an answer and a working example on the datatables forum: https://datatables.net/forums/discussion/comment/231058 It involves setting a data attribute on the header cells (`Name`) and then set custom listeners in...
Hi @Norlandz, thank you for the above, it looks great! I will give it a try in the coming days. Ideally I would like to integrate this either in the...
Thanks @turokg ! Interesting question... Well, possibly the [HTML widget](https://ipywidgets.readthedocs.io/en/latest/examples/Widget%20List.html#html) is meant to display pure HTML (e.g. no Javascript)? I just made this experiment to confirm: ``` from ipywidgets import...
I think the proper approach would be to provide a custom ipywidget. There are instructions at https://ipywidgets.readthedocs.io/en/latest/examples/Widget%20Custom.html, I will have a look at some point, and keep you posted if...
Thanks @jgunstone for pointing out at AnyWidget! That's an amazing tool... I had add a tentative Jupyter Widget locally for almost three months and could not figure out how to...