FieldRefs Element (List)

Applies to: SharePoint Foundation 2010

Contains a collection of FieldRef elements that specifiy field references for a field.

<FieldRefs>
  <FieldRef></FieldRef>
  <FieldRef></FieldRef>
  ...
</FieldRefs>

Attributes

Attribute

Description

None

N/A

Child Elements

FieldRef

Parent Elements

Field

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>