@wuiInputRadioLabeledRight(NAME, [VALUE], [LABEL], [RATTRS])

Inserts a radio button into <form> area in NST WUI style.

The following parameters are recognized:

NAME

The name to assign to the radio button.

[VALUE]

Optional value to associate with the radio button (what the CGI script will look for).

[LABEL]

What the user should see displayed next to the button.

[RATTRS]

Any attributes (like "checked" or title="text") you want to add to the radio button.

Example of using the macro:

@wuiInputRadioLabelRight("level","9","Vebose Output","checked
  @htmlAttr("title","Select this for maximum verbosity")")

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")

@wuiInputRadioLabelRight("level","9","Vebose Output","checked
  @htmlAttr("title","Select this for maximum verbosity")")
EOF

This macro is defined as:

<input @param(3)
@htmlAttr("type","radio")
@htmlAttr("name","@param(0)")
@htmlAttr("value","@param(1)")
@htmlAttr("class","labeledFieldFieldRight") /><span
@htmlAttr("class","labeledFieldLabelRight")>@param(2)</span>