Hi,
I have some problems with third-party Vaadin component if this is under others layouts, like accordion, details. Under root layout tag the component is showed like:
...
<layout expand="mapContainer" spacing="true">
<details summaryText="msg://details.label">
<hbox id="optCheckBox">
<checkbox label="msg:///checkbox.label"
property="active" value="false"
id="checkbox"/>
<checkbox id="checkboxElevation"
property="active" value="false"
label="msg://checkbox.label.elevation"/>
</hbox>
</details>
<vbox id="mapContainer" width="100%" minHeight="380px"/>
</layout>
...
But if I move vbox to under details/accordion layout the map component is not showed in vbox layout, like:
...
<layout expand="mapContainer" spacing="true">
<details summaryText="msg://details.label">
<hbox id="optCheckBox">
<checkbox label="msg:///checkbox.label"
property="active" value="false"
id="checkbox"/>
<checkbox id="checkboxElevation"
property="active" value="false"
label="msg://checkbox.label.elevation"/>
</hbox>
<vbox id="mapContainer" width="100%" minHeight="380px"/>
</details>
</layout>
...
In Cuba works this situation.