added <listbox> tag for multiline-selects,

moved attributs from <menupopup> to <menulist> (execpt options and id)
added several options for the predefined phpgw selects like cats or accounts
renamed size to options
This commit is contained in:
Ralf Becker 2002-09-17 09:36:55 +00:00
parent c51cbb2ae3
commit 7cbe3e734b
3 changed files with 11 additions and 9 deletions

View File

@ -9,7 +9,7 @@
</columns> </columns>
<rows> <rows>
<row> <row>
<description size="ib" span="all" value="eTemplates MediaDB" no_lang="1" id="msg"/> <description options="ib" span="all" value="eTemplates MediaDB" no_lang="1" id="msg"/>
</row> </row>
<row> <row>
<hrule span="all"/> <hrule span="all"/>
@ -27,8 +27,8 @@
</row> </row>
<row> <row>
<description value="Type"/> <description value="Type"/>
<menulist> <menulist span="all" statustext="select the type fitting most">
<menupopup span="all" id="type" statustext="select the type fitting most"/> <menupopup id="type"/>
</menulist> </menulist>
</row> </row>
<row> <row>

View File

@ -6,7 +6,7 @@
</columns> </columns>
<rows> <rows>
<row> <row>
<description size="ib" span="all" value="eTemplates MediaDB" no_lang="1" id="msg"/> <description options="ib" span="all" value="eTemplates MediaDB" no_lang="1" id="msg"/>
</row> </row>
<row> <row>
<hrule span="all"/> <hrule span="all"/>

View File

@ -63,8 +63,8 @@ an eTemplate from the example app in the <a href="etemplate.html">Tutorial</a>
&lt;/row> &lt;/row>
&lt;row> &lt;row>
&lt;description value="Type"/> &lt;description value="Type"/>
&lt;menulist> &lt;menulist span="all" statustext="select the type fitting most">
&lt;menupopup span="all" id="type" statustext="select the type fitting most"/> &lt;menupopup id="type"/>
&lt;/menulist> &lt;/menulist>
&lt;/row> &lt;/row>
&lt;row> &lt;row>
@ -121,11 +121,13 @@ implement only a subset of XUL. Here are the main differences:</p>
</tr> </tr>
<tr> <tr>
<td><b>Type</b></td> <td><b>Type</b></td>
<td>no attr,<br>this is<br>the tag</td> <td>type<br><i>(only for<br>sub-types)</td>
<td>yes</td> <td>no</td>
<td>type</td> <td>type</td>
<td> <td>
The type of the widget. It has to be either the name of a standard eTemplate-widget or of The type of the widget is stored in the tag itself, some widgets have sub-types (unknow to XUL).
In that case the subtype is stored in the type attribut.<br>
The Type / tag has to be either the name of a standard eTemplate-widget or of
an already existing <a href="#extensions">extension</a>. an already existing <a href="#extensions">extension</a>.
</td> </td>
</tr> </tr>