mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:44 +01:00
33c6766c88
- fixed tab widget to use id instead of label - added attribute names for describtion (label) in xul_io, to export them as single attributes not comma-sep. as options - added translate: true to description/label title --> xet-files need to be dumped new, to get the tab-ids --> seems like describtion value is translated unconditional, it should only be translated if no_lang attribute is not set or false, while label attribute is always translated (Andreas?)
29 lines
914 B
XML
29 lines
914 B
XML
<?xml version="1.0"?>
|
|
<overlay>
|
|
<tabbox width="100%" id="tab_1">
|
|
<tabs>
|
|
<tab id="test1" label="Test1" />
|
|
<tab id="test2" label="Test2" />
|
|
<tab id="to_disable" label="Disabled" />
|
|
<tab id="test3" label="Test3" />
|
|
<tab id="test4" label="Test4" />
|
|
</tabs>
|
|
<tabpanels>
|
|
<vbox>
|
|
<label value="This is the content of tab 1"/>
|
|
<label value="This is the content of tab 1"/>
|
|
<label value="This is the content of tab 1"/>
|
|
<label value="This is the content of tab 1"/>
|
|
<label value="This is the content of tab 1"/>
|
|
<label value="This is the content of tab 1"/>
|
|
<label value="This is the content of tab 1"/>
|
|
</vbox>
|
|
<label value="This is the content of tab 2"/>
|
|
<label value="This tab should be hidden"/>
|
|
<label value="This is the content of tab 3"/>
|
|
<label value="This is the content of tab 4 - it should be displayed"/>
|
|
</tabpanels>
|
|
</tabbox>
|
|
</overlay>
|
|
|