Inserts a "jump" button to go with the wuiContinueButton macro.
The following parameters are recognized:
The location to jump to.
The location to return to.
The label to put on the button.
List of hidden key/values using @wuiInputHidden()
Adds the counter part to the @wuiContinueButton() macro. It passes the RETURN_TO_URL argument as the "return" value to the page it jumps to.
Example of using the macro:
@wuiJumpButton("../system/pci.cgi#pcidetailed","../networking/systool_net.cgi#pcidescriptive","PCI Detailed Description")
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")
@wuiJumpButton("../system/pci.cgi#pcidetailed","../networking/systool_net.cgi#pcidescriptive","PCI Detailed Description")
EOF
This macro is defined as:
@wuiContinueButton("@param(0)","@param(2)","@wuiInputHidden("return","@param(1)")","@param(3)")