-
Notifications
You must be signed in to change notification settings - Fork 59
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
Quarto #314
Comments
Hi @RegularnaMatrica, thanks for reaching out! First thing can I ask which version of from itables.version import __version__
print(f"This is itables v{__version__}") Also there are two quarto examples in the documentation (https://mwouts.github.io/itables/quarto.html), and you might also find this example useful. Now re your questions:
It should, cf. the examples in the documentation. Note that
I am not aware of that problem, a minimal example would be welcome!
Indeed that has been addressed in ITables 1.7.0, cf. the changelog, hence my question on ITables' version
That issue is a work in progress at #288, please help with the testing if you can.
Yes it is. Based on the datatables documentation https://datatables.net/reference/option/searchBuilder.columns you should be able to govern this through a |
Thanks for the feedback and support. itables version:
quarto version:
import:
From documentation: so that is probably the reason why with searchBuilder works by specifying column indices:
Regarding ---
title: "Test"
format:
html:
page-layout: full
code-fold: true
jupyter: python3
---
```{python}
#| echo: false
from itables import show
import itables.options as opt
import pandas as pd
opt.showIndex = False
opt.lengthMenu = [5, 10, 20, 50]
```
```{python}
#| label: group name
#| echo: false
df = pd.DataFrame({"A": [0]})
show(df)
``` It seems that message is rendered if there is label parameter with multiple words. If chunk label |
Hi, thank you for developing this package. I'm trying quarto for generating html reports. While using itables for displaying data.frames (
show
) I have encountered few problems:init_notebook_mode(all_interactive=True)
does not render data.frames. Without it, it works. Is this expected? I thought its other way around.::: {#cell-grouped missmatches .cell execution_count=4}
. Did you maybe encounter this problem, or is due to my local setup?Unable to parse table from raw html block: skipping.
I saw you opened issue, but it seemed this should be solved.SearchBuilder Requires DateTime when used with dates
. When I remove timestamp column it works. Is it possible to specify which columns are targetable by searchBuilder?The text was updated successfully, but these errors were encountered: