Hi,
We have a view with dataGrid component into a tab with two actions but when we create the view this exception raise : io.jmix.flowui.exception.GuiDevelopmentException: Can’t find component: direccionsPersona for action: direccionsPersona.createAction
The tab and dataGrid declaration is
"<tab id="adrecesTab" label="Adreces">
<dataGrid id="direccionsPersona" dataContainer="direccionsDc">
<columns>
<column property="c_direccio.c_tipus_direccio"/>
<column property="c_direccio.d_adreca"/>
</columns>
<actions>
<action id="createAction" type="list_create"/>
<action id="removeAction" type="list_remove"/>
</actions>
</dataGrid>
<simplePagination/>
<hbox id="buttonsDireccionsPanel">
<button id="addDireccioBtn" action="direccionsPersona.createAction"/>
<button id="removeDireccioBtn" action="direccionsPersona.removeAction"/>
</hbox>
</tab>"
Thnxs,