Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Captions in Data Capture file
Lax
In a datacapture.cfg file, Is it possible to display a caption that is different from the name of the item?
For e.g., in the following code,
<item name="Headline">
<database data-type="VARCHAR(256)" />
<textarea required="t" cols="60" rows="6"/>
</item>
I want the user to see Headline/Title in the data capture template instead of Headline. I don't want to change the name since that involves making modifications in the tpl files.
Thanks for your help.
Find more posts tagged with
Comments
Michael
From the TeamSite Templating manual:
The optional subelements for
<item> are <label>, <description>, and <database>. The <label> and <description>
subelements consist of character data. The information provided by <label> is used as the
field name in the data capture form. If <label> is not included, the name attribute of the
<item> element is used as the field name. A <description> provides more details about
what the data capture item represents or the format that may be required for data entry.
Trust this helps.
Cheers
Michael
james1
<label>
--
James H Koh
Interwoven Engineering
Lax
Perfect. It works.
Thanks
Lax
Thank you!!