Can you force setup chunks to not render in dashboards? #13165
Answered
by
mcanouil
edenian-prince
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Aug 1, 2025
Replies: 1 comment 1 reply
-
Move the cell in the sidebar. # {.sidebar}
```{python}
ojs_define(newdata = df_str2)
```
```{ojs}
//| output: false
import {date, checkbox} from "@jashkenas/inputs"
parsed_data = newdata.map(d => ({
...d,
date: new Date(d.date)
}))
```
```{ojs}
viewof RESULT = checkbox({
title: "Result Status",
options: ["Opened", "Closed", "In Progress"],
value: ["Opened", "Closed", "In Progress"]
})
viewof start_date = date({
title: "Start Date",
value: "2024-01-01"
})
viewof end_date = date({
title: "End Date",
value: "2025-07-01"
})
``` Accessibility: To improve accessibility, please add alternative text to your screenshots. This helps all users, including those using screen readers, to understand the context of the images. A brief description can make a big difference! See Good Alt Text, Bad Alt Text — Making Your Content Perceivable. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
edenian-prince
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Move the cell in the sidebar.
Accessibility: To improve accessibility, please add alternative text to your screenshots. This helps all users, including those using screen r…