<sas-ip:IForm>

Syntax

<sas-ip:IForm
   [action="java.lang.String"]
   [actionLabel="java.lang.String"]
   [cacheTimeToLive="int"]
   [customAttributes="java.lang.String"]
   [epilog="java.lang.String"]
   [id="value"]
   [instantiate="true|false"]
   [locale="java.util.Locale"]
   [method="java.lang.String"]
   [name="java.lang.String"]
   [objectDataProperty="java.lang.String"]
   [prolog="java.lang.String"]
   [ref="java.lang.String"]
   [render="true|false"]
   [scope="page|request|session|application"]
   [title="java.lang.String"]>
      [<sas-ip:IFormTextEntry ...>
         [<sas-ip:IOption .../>]
         [<sas-ip:SetProperty ...>
            The value to set on the parent tag
         </sas-ip:SetProperty>]
         [Additional <sas-ip:IOption>, <sas-ip:SetProperty> tags...]
      </sas-ip:IFormTextEntry>]
      [<sas-ip:IFormPassword ...>
         [<sas-ip:IOption .../>]
         [<sas-ip:SetProperty ...>
            The value to set on the parent tag
         </sas-ip:SetProperty>]
         [Additional <sas-ip:IOption>, <sas-ip:SetProperty> tags...]
      </sas-ip:IFormPassword>]
      [<sas-ip:IFormHidden .../>]
      [<sas-ip:IFormListBox ...>
         [<sas-ip:IOption .../>]
         [<sas-ip:SetProperty ...>
            The value to set on the parent tag
         </sas-ip:SetProperty>]
         [Additional <sas-ip:IOption>, <sas-ip:SetProperty> tags...]
         [One or more lines of choices to be used in the listbox]
      </sas-ip:IFormListBox>]
      [<sas-ip:IFormRadio ...>
         [<sas-ip:IOption .../>]
         [<sas-ip:SetProperty ...>
            The value to set on the parent tag
         </sas-ip:SetProperty>]
         [Additional <sas-ip:IOption>, <sas-ip:SetProperty> tags...]
         [One or more lines of choices to be used in the RadioTag]
      </sas-ip:IFormRadio>]
      [<sas-ip:IOption .../>]
      [<sas-ip:SetProperty ...>
         The value to set on the parent tag
      </sas-ip:SetProperty>]
      [Additional <sas-ip:IFormTextEntry>, <sas-ip:IFormPassword>, <sas-ip:IFormHidden>, <sas-ip:IFormListBox>, <sas-ip:IFormRadio>, <sas-ip:IOption>, <sas-ip:SetProperty> tags...]
</sas-ip:IForm>

Attributes

actionThe action URL to post forms, such as "http://www.sas.com/jsp/my.jsp".
actionLabelThe action URL to post forms, such as "http://www.sas.com/jsp/my.jsp".
cacheTimeToLiveThe cacheTimeToLive in seconds of the bean.
customAttributes
epilog
idCase-sensitive name used to identify the object instance.
instantiateFlag that, if true, indicates that a new instance of the underlying class should be loaded if one cannot be found in PageContext. Must be used with an id attribute.
locale
methodThe HTTP method. Valid values are "get"(default) or "post".
name
objectDataProperty
prolog
refThe variable String value that represents an object created earlier in the same scope.
render
scopeThe scope (or page context) within which the reference is available.
titleThe title of the bean.

More Information

To view the documentation for the related TransformationBean, see com.sas.servlet.tbeans.ipage.iform.IForm.

If you need to subclass the tag handler class for the sas-ip:IForm tag, extend com.sas.taglib.servlet.tbeans.ipage.IFormTag.