parameters to input field creators are optional on their own
This commit is contained in:
parent
7b81dbdd98
commit
b625901bd1
|
@ -163,13 +163,13 @@ See the examples for further informations.
|
|||
The returned \semvar{input-field}s can be used as-is in SXML.
|
||||
\end{desc}
|
||||
|
||||
\defun{make-text-input-field}{\ovar{default-text \ovar{attributes}}}{input-field}
|
||||
\defun{make-text-input-field}{\ovar{default-text} \ovar{attributes}}{input-field}
|
||||
\defunx{make-hidden-input-field}{value \ovar{attributes}}{input-field}
|
||||
\defunx{make-password-input-field}{\ovar{attributes}}{input-field}
|
||||
\defunx{make-number-input-field}{\ovar{default \ovar{attributes}}}{input-field}
|
||||
\defunx{make-textarea-input-field}{\ovar{default-text \ovar{attributes}}}{input-field}
|
||||
\defunx{make-select-input-field}{options \ovar{multiple? \ovar{attributes}}}{input-field}
|
||||
\defunx{make-checkbox-input-field}{\ovar{value \ovar{attributes}}}{input-field}
|
||||
\defunx{make-number-input-field}{\ovar{default} \ovar{attributes}}{input-field}
|
||||
\defunx{make-textarea-input-field}{\ovar{default-text} \ovar{attributes}}{input-field}
|
||||
\defunx{make-select-input-field}{options \ovar{multiple?} \ovar{attributes}}{input-field}
|
||||
\defunx{make-checkbox-input-field}{\ovar{value} \ovar{attributes}}{input-field}
|
||||
\defunx{make-radio-input-fields}{values \ovar{attributes}}{input-fields}
|
||||
\begin{desc}
|
||||
These functions generate various kind of \semvar{input-field}s. The
|
||||
|
@ -209,8 +209,8 @@ See the examples for further informations.
|
|||
\semvar{values}.
|
||||
\end{desc}
|
||||
|
||||
\defun{make-submit-button}{\ovar{caption \ovar{attributes}}}{input-field}
|
||||
\defunx{make-reset-button}{\ovar{caption \ovar{attributes}}}{input-field}
|
||||
\defun{make-submit-button}{\ovar{caption} \ovar{attributes}}{input-field}
|
||||
\defunx{make-reset-button}{\ovar{caption} \ovar{attributes}}{input-field}
|
||||
\defunx{make-image-button}{source \ovar{attributes}}{input-field}
|
||||
\begin{desc}
|
||||
The \semvar{attributes} of all functions are appended to the
|
||||
|
|
Loading…
Reference in New Issue