In the boilerplatejs zip, there is a sample component (salesDashBoard) with two sub-components (chartViewPanel and treeViewPanel) The parent component defines a view.html with two divs with ids #tree and #chart, but the sub components are appended to this view instead of being rendered in these two divs.
Is there a way (maybe with a DomController ?) to attach subcomponents to specific DOM elements instead of just appending them ? That would be very useful, ideally I would love to have a hierarchy of Dom / Url controllers: the parents would intercept events and then route them to children, until a child routes an event (for a particular set of url / dom events) to a simple component with a MVVM.