Oracle Fusion Middleware Tag Reference for Oracle Team Productivity Center Connectors 11g Release 2 (11.1.2.0.0) E17495-01 |
Tag name: <Field>
The field tag defines a Work item field.
<Field name="SUBJECT" label="${res.BUG_SUBJECT}" required="true" maxLength="80" hint="${res.BUG_SUBJECT_HINT}"/> <Field name="CONFIRM_FLAG" label="${res.BUG_CONFIRMED}" controlType="radioGroup" lovDef="confirmLookup"/> <Field name="RPTDATE" label="${res.BUG_FILEDATE}" type="date" dateFormat="yyyy-MM-dd" readOnly="true" hint="${res.BUG_FILEDATE_HINT}"> <inputValueResolver resolverClass="oracle.alm.bugdb.model.BugDBValueFunctoinResolver"> <Function name="TODAY" paramTypes="Integer"/> </inputValueResolver> </Field>
Name | Type | Default value | Required? | Supports EL? | Description | |
---|---|---|---|---|---|---|
name | String | Y | Y | Specifies the field name.The name is unique inside each work item definition. | ||
colName | String | Y | Y | Specifies the corresponding attribute in the data source for this work item field. | ||
type | String | String | Y | The type attribute is the java type of a work item field. Currently these java types are supported: "String" "Number" "double" "boolean" "date". | ||
label | String | Y | A brief description given for the purpose of the field. | |||
controlType | String | Y | Specifies the UI control type to use to render this field. Valid values are: "inputText" "inputDate" "textArea" "lov" "comboBox" "radioGroup" "checkBox" "list". | |||
defaultValue | Object | Y | Specifies the default value to use when creating a new work item. | |||
lovDef | String | Y | Specifies the name of the lov definition to use when the controlType is set to "lov". | |||
required | boolean | false | Y | Specifies if the value is required when creating a new work item or updating an exisiting work item. Valid values are true and false. A valid value has to be provided before a work item can be saved if the value is set to true. | ||
queryable | boolean | true | Y | Specifies if any query criterion can be used for the field. Valid values are true and false. If it is set to true the field name will appear inside the field drop down on the query page. | ||
queryDisplayable | boolean | true | Y | Specifies if the field name is part of the query result list column. Valid values are true and false. The field name appears inside the Customize Columns dialog if the value is set to true. | ||
readOnly | boolean | false | Y | Specifies if the field value is only viewable and cannot be updated. Valid values are true and false. Tthe field value is only viewable if the value is set to true. | ||
visible | boolean | true | Y | Indicates whether the corresponding UI control for this field will be rendered or not. | ||
fetchMode | String | singleValue | Y | Used when the work item is rendered as a listOfValues control. valid values are "singleValue" and "multiValues". | ||
emptyEntryValue | String | Y | Used when the work item field is rendered as a comboBox control. For example: NULL can be used as the empty value. Connector writer needs to interprate it as an appropriate value when sending the query criteria to back end repository. | |||
enableEmptyEntry | boolean | false | Y | Specifies if an empty value can be used if the work item field is rendered as a comboBox control. Valid values are true and false. Corresponding attribute emptyEntryValue should be used and a valid value be provided if the value is set to true. | ||
dateFormat | String | Y | Provides format style used for the input date control if the work item field controlType is set to "date". | |||
hint | String | Y | A short message displayed as a watermark for any input UI control. It may provide value format information or macro to use. | |||
maxLength | int | Y | Specifies the maximum number of charactors allowed for any input UI control. |