BPM Object Tag Library
Tag field


Use this tag to associate an HTML element to a BPM object attribute. The HTML element will display the value of the BPM Object attribute as its default value, and the values you enter in the HTML element will be loaded into the BPM Object attribute.
This tag generates a String corresponding to the name and value of a BPM Object's attribute. It should be used in HTML elements that accept the attributes name and value, like the input element.
This tag combines the tags fieldName and fieldValue making the code easier to read.

Example:

To store the value entered in the input element into the attribute telephone number:

<input type="text" id="telephoneNumber" <f:field att="personFo.telephoneNumber"/>/> 

The same result could have been achieved by combining the tags fieldName and fieldValue:

<input type="text" id="telephoneNumber" <f:field att="personFo.telephoneNumber"/>/> 


Attributes
NameRequiredRequest-timeTypeDescription
atttruetruejava.lang.StringThe BPM Object attribute to associate to the input HTML element. This attribute is accessed through an instance of a BPM Object.

Variables
No Variables Defined.


Output Generated by Tag Library Documentation Generator.