Marc Wouts

Results 502 comments of Marc Wouts

As I mentioned above (https://github.com/mwouts/itables/issues/294#issuecomment-2183379643), the dark mode activation of ITables is done by the `init_notebook_mode`. Can you make sure you do call that function? If so, can you look...

Yes as I mentioned above, the current light vs dark mode detection needs improving. The current logic is just below - dark mode is activated if either the browser is...

Hi everyone, I have a development version that should be a bit smarter re the dark mode. Would you mind giving it a try and let me know how it...

@micboat to include your custom css, you could save it under `custom.css` then add this to your app: ``` ui.include_css(Path(__file__).parent / "custom.css") ```

Hi all, I have just updated the documentation on the [Shiny Apps](https://mwouts.github.io/itables/shiny.html). I think it's now best to use the `ITable` widget, let me know how this works for you!...

Hi @fredguth , you can deactivate the downsampling by setting e.g. `maxBytes=0`, see the [documentation](https://mwouts.github.io/itables/downsampling.html), but then if you display very large tables your web page might become unresponsive. You're...

Hi @MichalRIcar , thank you for reporting this! Yes I am interested in knowing a bit more about this. I gave it a quick try, opening the [sample_dataframes.md](https://github.com/mwouts/itables/blob/main/docs/sample_dataframes.md) notebook in...

Thank you @AllanJard for the hint! I know what to look for now, thanks! @MichalRIcar I have the following questions for you: - Does the problem persist when you export...

Thanks @MichalRIcar for the additional info! The default value of the `style` option is `table-layout:auto;width:auto;margin:auto;caption-side:bottom`, you might want to keep the other values. See also https://github.com/mwouts/itables/blob/main/src/itables/options.py#L25-L34 and https://mwouts.github.io/itables/custom_css.html#position-and-width

Testing locally with this code almost works, e.g. we can display and filter the table ```import pandas as pd from itables import show, init_notebook_mode init_notebook_mode(all_interactive=True) show(pd.DataFrame({'date':pd.date_range("2022-01-01", "2024-12-31")}), buttons=["searchBuilder"]) ``` @AllanJard...