diff --git a/docs/get-started/controls-pagination.qmd b/docs/get-started/controls-pagination.qmd index 09363b7..dcd6c08 100644 --- a/docs/get-started/controls-pagination.qmd +++ b/docs/get-started/controls-pagination.qmd @@ -3,9 +3,10 @@ title: Pagination --- ```{python} -from reactable import Reactable +from reactable import Reactable, embed_css from reactable.data import cars_93 +embed_css() ``` You can change the default page size by configuring `default_page_size`: diff --git a/docs/get-started/controls-resizing.qmd b/docs/get-started/controls-resizing.qmd index 3e442e1..9e996be 100644 --- a/docs/get-started/controls-resizing.qmd +++ b/docs/get-started/controls-resizing.qmd @@ -3,8 +3,10 @@ title: Column resizing --- ```{python} -from reactable import Reactable, Column, ColGroup +from reactable import Reactable, Column, ColGroup, embed_css from reactable.data import cars_93 + +embed_css() ``` You can make columns resizable by setting `resizable=True`: diff --git a/docs/get-started/controls-searching.qmd b/docs/get-started/controls-searching.qmd index 181d250..21f4b6c 100644 --- a/docs/get-started/controls-searching.qmd +++ b/docs/get-started/controls-searching.qmd @@ -3,8 +3,10 @@ title: Searching --- ```{python} -from reactable import Reactable +from reactable import Reactable, embed_css from reactable.data import cars_93 + +embed_css() ``` You can make the entire table searchable by setting `searchable=True`: diff --git a/docs/get-started/structure-details.qmd b/docs/get-started/structure-details.qmd index 4a709c7..ac9d0e1 100644 --- a/docs/get-started/structure-details.qmd +++ b/docs/get-started/structure-details.qmd @@ -15,7 +15,7 @@ penguins = load_penguins() pl_penguins = pl.from_pandas(penguins) ``` -You can make rows expandable with additional content through details, which takes an R or JavaScript render function. See [Custom Rendering](./format-custom-rendering.qmd) for details on how to use render functions. +You can make rows expandable with additional content through details, which takes an Python or JavaScript render function. See [Custom Rendering](./format-custom-rendering.qmd) for details on how to use render functions. ## Render details with Python