How to Pre-check Checkboxes Using Interact.jl?

I figured it out! Thanks to @piever , here is a solution that works:

options = ["a", "b", "c"]
value = ["a", "c"]
checkboxes(options, value = value)

3 Likes