FieldRefs Element (List)
This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
Contains a collection of FieldRef elements used to define computed fields.
<FieldRefs>
<FieldRef></FieldRef>
<FieldRef></FieldRef>
...
</FieldRefs>
Attributes
Attribute |
Description |
|
---|---|---|
None |
N/A |
Child Elements
Parent Elements
Occurrences
Minimum: 0 Maximum: 1 |
Example
The following example creates a computed field called myField that combines values of the Title and ID fields to form a hyperlink such as <a href="form.htm?ID="ID">Title</a>.
<Field Name="myField" Type="Computed">
<FieldRefs>
<FieldRef Name="Title"/>
<FieldRef Name="ID"/>
</FieldRefs>
<DisplayPattern>
<HTML><![CDATA[<a href="form.htm?ID="]]></HTML>
<Column Name="ID"/>
<HTML><![CDATA[">]]></HTML>
<Column Name="Title"/>
<HTML><![CDATA[</a>]]></HTML>
</DisplayPattern>
</Field>