diff --git a/etemplate/doc/referenz.html b/etemplate/doc/referenz.html index 8b54d65f31..2fd77fad1b 100644 --- a/etemplate/doc/referenz.html +++ b/etemplate/doc/referenz.html @@ -378,9 +378,9 @@ implement only a subset of XUL. Here are the main differences:

Integer - <textbox
type="integer"/> + <textbox
type="int"/> ? - integer + int a input-field to enter an integer
In the html-UI this is rendered as <input ...>. There are no checks implemented at the moment, @@ -551,6 +551,24 @@ implement only a subset of XUL. Here are the main differences:

writable tmp-dir) plus, if javascript is enabled, the local filename of the client as "${name}_path". + + Date + + <date options="Y-m-d,1"/>
+ + no + date + + Dateinput via selectboxes or a field for the year
+ The order of the input-fields is determined by the prefs of the user.
+ Options: [date-storage-format][,year-no-selectbox]
+ date-storage-format is the format, in which the date is stored in the variable: empty means + an unix-timestamp, or a string containing the letters Y, m and d plus separators, + eg. 'Y-m-d': 2002-12-31.
+ year-no-selectbox if true an int-widget (input-field) is used instead of a select-year widget.
+ If readonly is set, this widget can be used to display a date, without the need to convert it. + + VBox, HBox