我有一組部件(例如Label
+ TextArea
)如何隱藏一組UI組件的
<Label text="Country"/>
<TextArea value="{model>/country}"/>
現在,躲我被迫設置visible
屬性爲每個組件組
<Label visible="false" text="Country" />
<TextArea visible="false" value="{model>/country}"/>
我想用它的特性的「容器」由事務所設置屬性隱藏整個基團,例如visible
<Container visible="false">
<Label text="Country" />
<TextArea value="{model>/country}"/>
</Container>
我有例如一個VerticalLayout
其中包含Panel
,其中包含SimpleForm
。 SimpleForm包含4對情侶Label
- TextArea
,我想小組第一和第二的夫婦無添加額外的保證金或其他UI特性
東西一樣標籤和文本區域是「控制」而不是「組件」。 – hirse