getAdditionalParameters()
Returns a HashMap containing additional parameters that should be added to the
form used to perform the various actions on the tbean.
setAdditionalParameters(java.util.HashMap map)
Sets a HashMap containing additional parameters that should be added to the
form used to perform the various actions on the tbean.
void
setFormEnabled(boolean enabled)
Sets whether the tbean should render its formObject.
void
setFormObject(Form form)
Sets the form object to be used by the viewer.
Gets the default form object to be used by the viewer.
The getDefaultFormObject( HttpActionProviderViewInterface viewer,
HttpServletRequest request, HttpServlet response ) method on the
com.sas.servlet.Util class provides a generic implementation of this
method for viewers that also implement the HttpActionProviderViewInterface.
Returns a HashMap containing additional parameters that should be added to the
form used to perform the various actions on the tbean. The default value is null.
Each parameter will be added to the form as a hidden field using the name of the
item as the name= parameter on the <input> tag and the value
of the item as the value= parameter on the input tag.
Returns:
a HashMap containing additional parameters that should be added to the form
Sets a HashMap containing additional parameters that should be added to the
form used to perform the various actions on the tbean. The default value is null.
Each parameter will be added to the form as a hidden field using the name of the
item as the name= parameter on the <input> tag and the value
of the item as the value= parameter on the input tag.
Sets an additional parameter to be added to the form used to perform
the various actions on the tbean. Each parameter will be added to the form as
a hidden field using the name of the item as the name= parameter on the
<input> tag and the value of the item as the value= parameter on the input tag.
Determines if the tbean should render its formObject. If true, then the tbean
is responsible for rendering the formObject via the formObject's writeHeader and
writeFooter methods. If false then the tbean does not render the formObject and
the user is responsible for rendering the formObject.
Returns:
true if the tbean should render its formObject
setFormEnabled
void setFormEnabled(boolean enabled)
Sets whether the tbean should render its formObject. If so, then set to true.
If set to false, the the user is responsible for rendering the formObject via
its writeHeader and writeFooter methods.
Parameters:
value - true if the formObject should be rendered by the tbean