Inserts a hidden field within a form.
The following parameters are recognized:
The name to reference the VALUE with.
The value to associate with NAME.
Optional set of attributes to apply to the hidden input entity.
Allows passing information to the CGI backend processor. For example, if one included @wuiInputHidden("action","clear"), a standard NST WUI CGI script would see the environment variable QUERY_action set to "clear" when processing.
Example of using the macro:
@wuiInputButton("action","clear")
Assuming the com.ccg.macros.at.All
class is within your CLASSPATH
and the
config/html.at
macros file has been
generated (Hint: run make atmacros in the
wui
directory), a developer should be able to
run the above example by copy/pasting from below:
[root@probe root]#
java com.ccg.macros.at.All <<EOF
@include("config/html.at",,"d")
@wuiInputButton("action","clear")
EOF
This macro is defined as:
<input @htmlAttr("type","hidden") @htmlAttr("name","@param(0)") @htmlAttr("value","@param(1)") @param(2) />