Partager via


Fields, élément (List)

Dernière modification : jeudi 15 avril 2010

S’applique à : SharePoint Foundation 2010

Dans cet article
Attributs
Éléments enfants
Éléments parents
Occurrences

Contient des définitions de champ pour une définition de liste dans un fichier Schema.xml, ou pour un type de liste de base dans le fichier Onet.xml global, en spécifiant les champs implémentés dans une liste.

<Fields  Revision = "Integer">  ...
</Fields>

Attributs

Attribut

Description

Revision

Argument Integer facultatif.

Éléments enfants

Field

Éléments parents

Metadata (List), MetaData (Site)

Occurrences

Minimum : 0

Maximum : 1

Exemple

L’exemple suivant, extrait du fichier Schema.xml pour des listes des tâches, spécifie les champs utilisés de manière unique dans une liste des tâches.

<Fields>
   <Field Type="Choice" Name="Priority" DisplayName="Priority" >
      <CHOICES>
         <CHOICE>(1) High</CHOICE>
         <CHOICE>(2) Normal</CHOICE>
         <CHOICE>(3) Low</CHOICE>
      </CHOICES>
      <Default>(2) Normal</Default>
   </Field>
   <Field Type="Choice" Name="Status" DisplayName="Status">
      <CHOICES>
         <CHOICE>Not Started</CHOICE>
         <CHOICE>In Progress</CHOICE>
         <CHOICE>Completed</CHOICE>
         <CHOICE>Deferred</CHOICE>
         <CHOICE>Waiting on someone else</CHOICE>
      </CHOICES>
      <Default>Not Started</Default>
   </Field>
   <Field Type="Number" Name="PercentComplete" Percentage="TRUE" 
         Min="0" Max="1" DisplayName="% Complete"></Field>
   <Field Type="User" List="UserInfo" Name="AssignedTo" 
         DisplayName="Assigned To"></Field>
   <Field Type="Note" RichText="TRUE" Name="Body" 
         DisplayName="Description" Sortable="FALSE"></Field>
   <Field Type="DateTime" Name="StartDate" DisplayName="Start Date">
      <Default>[today]</Default>
   </Field>
   <Field Type="DateTime" Name="DueDate" 
         DisplayName="Due Date"></Field>
</Fields>