Skip to content
Discussion options

You must be logged in to vote

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 r…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@edenian-prince
Comment options

Answer selected by edenian-prince
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
ojs-engine Issues with the ojs engine dashboards
2 participants