egroupware_official/etemplate/templates/default/tab_widget.test.xet
Ralf Becker 702e169b42 allow to write only a relative eTemplate-name for each tab:
relative means it contains no '.' and it will then be prefixed with the name of tpl it is used in (plus a '.')
eg. tpl-name 'etemplate.tab_widget.test' tab-names 'work|privat|note' will expand to 'etemplate.tab_widget.test.work', ...
2002-10-05 10:40:02 +00:00

49 lines
1.2 KiB
XML

<?xml version="1.0"?>
<!-- $Id$ -->
<overlay>
<grid id="privat" template="" lang="" group="0" version="">
<columns/>
<rows/>
</grid>
<grid id="work" template="" lang="" group="0" version="">
<columns/>
<rows/>
</grid>
<grid id="note" template="" lang="" group="0" version="">
<columns/>
<rows/>
</grid>
<grid id="etemplate.tab_widget.test" template="" lang="" group="" version="">
<columns>
<column width="250"/>
<column/>
</columns>
<rows>
<row>
<textbox label="Surname" id="surname" statustext="Surname"/>
<textbox label="Familyname" id="familyname" statustext="Familyname"/>
</row>
<row>
<tabbox>
<tabs span="all">
<tab label="Privat" statustext="privat address"/>
<tab label="Work" statustext="work address"/>
<tab label="Note" statustext="free note-text"/>
</tabs>
<tabpanels>
<grid id="privat"/>
<grid id="work"/>
<grid id="note"/>
</tabpanels>
</tabbox>
</row>
<row>
<description span="all"/>
</row>
<row>
<button label="Save" id="save" statustext="Save changes"/>
<button label="Cancel" id="cancel" statustext="Cancel, discarding changes"/>
</row>
</rows>
</grid>
</overlay>