Hi,
I not understood why I not see textArea component under accordion → tab layouts, the code:
...
<accordionPanel id="commentsImages" summaryText="msg://commentsImages.summaryText">
<tabs id="extendetInformationTabs" height="100%" width="100%">
<tab id="descriptionTab" label="msg://descriptionTab.label">
<hbox id="contentTextArea" width="100%">
<textArea id="commentsField"
height="100%"
width="100%"
dataContainer="pasaportDc"
property="comments"/>
</hbox>
</tab>
<tab id="probeImages" label="msg://probeImages.label"/>
</tabs>
</accordionPanel>
...
I have:
If I move outside tab component works:
...
<accordionPanel id="commentsImages" summaryText="msg://commentsImages.summaryText">
<hbox id="contentTextArea" width="100%">
<textArea id="commentsField"
height="100%"
width="100%"
dataContainer="pasaportDc"
property="comments"/>
</hbox>
<tabs id="extendetInformationTabs" height="100%" width="100%">
<tab id="descriptionTab" label="msg://descriptionTab.label">
</tab>
<tab id="probeImages" label="msg://probeImages.label"/>
</tabs>
</accordionPanel>
...
textArea component is displayed:
but I need to work under accordion->tab layout.
Where is my mistakes or how I do that.