Displays the time field to the right of date fields. Set the attribute value to "true" to have the time field appear next to the date field. For example:
Form |
<TCFIELD NAME="DateHired" showTime="true" /> |
Block |
<tc:field name="DateHired" category="EMPL" showTime="true" /> |
<tc:wizardParameter name="DateHired" showTime="true" /> |
Displays the time field directly below the date fields. Set the attribute value "true" to have the time field appear below the date field. For example:
Form |
<TCFIELD NAME="DateHired" showTime="true" timeUnderDate="true" /> |
Block |
<tc:field name="DateHired" category="EMPL" showTime="true" timeUnderDate="true" /> |
<tc:wizardParameter name="DateHired" showTime="true" timeUnderDate="true" /> |
Important: You must include the showTime attribute to use timeUnderDate.
Controls the width of date fields by specifying the number of characters for the field. For example:
Form |
<TCFIELD NAME="DateHired" size="8" /> |
Block |
<tc:field name="DateHired" category="EMPL" size="8" /> |
<tc:wizardParameter name="DateHired" size="8" /> |