Details
Description
If you place any control which requires a focus into a Rollup Header you can't click on it without collapsing the rollup.
I tried to place a ListButton within a Rollup Header:
<Rollup expanded="true">
<heading>
<BoxPane orientation="horizontal">
<Label text="Choose:" />
<ListButton listData="['Option 1', 'Option 2']" />
</BoxPane>
</heading>
...
If I click on the ListButton, the rollup expands/collapses. Please add a shared property which allows preventing the collapse behaviour on specific controls:
<Rollup expanded="true">
<heading>
<BoxPane orientation="horizontal">
<Label text="Choose:" />
<ListButton listData="['Option 1', 'Option 2']" Rollup.ignore="true" />
</BoxPane>
</heading>
...