I have a component FilterOptions with child components FilterOption. FilterOptions has a checkbox for select all and FilterOption has a checkbox to select itself. When I bind to the boolean like so:
Sure, in the FilterOptionComponent class you could add an observer for the parent’s hasSelectedAll, and respond to changes (e.g. depending the behaviour you want, do this.set('isSelected', true) when the parent’s property becomes true). You would also want the parent’s property to track the collective state of its child components, to uncheck itself when you uncheck a child component.
There are a few ways to set up the dependencies between an “All” checkbox and the others, but I think they would all internally make use of childViews and parentView component properties.