Compartilhar via


Elemento MAPPINGS (lista)

Contém mapeamentos de valores para as opções exibidas em um campo Opção Choice.

                    
                      <MAPPINGS>
    <MAPPING
      Value = "Text">
    </MAPPING>
  ...
                      </MAPPINGS>
                    

Atributos

Atributo Descrição

Nenhum

N/A

Elementos filho

MAPPING

Elementos pai

O campo

Ocorrências

No mínimo: 0

Máximo: 1

Exemplo

O seguinte trecho mostra como para implementar o elemento MAPPINGS MAPPINGS em um campo Opção Choice.

                    <Field ID="{c15b34c3-ce7d-490a-b133-3f4de8801b76}" Type="Choice" name="Status" Displayname="$Resources:core,Tasks_Status;" SourceID="https://schemas.microsoft.com/sharepoint/v3" Staticname="Status">
  <CHOICES>
    <CHOICE>$Resources:core,Tasks_NotStarted;</CHOICE>
    <CHOICE>$Resources:core,Tasks_InProgress;</CHOICE>
    <CHOICE>$Resources:core,Tasks_Completed;</CHOICE>
    <CHOICE>$Resources:core,Tasks_Deferred;</CHOICE>
    <CHOICE>$Resources:core,Tasks_Waiting;</CHOICE>
  </CHOICES>
  <MAPPINGS>
    <MAPPING value="1">$Resources:core,Tasks_NotStarted;</MAPPING>
    <MAPPING value="2">$Resources:core,Tasks_InProgress;</MAPPING>
    <MAPPING value="3">$Resources:core,Tasks_Completed;</MAPPING>
    <MAPPING value="4">$Resources:core,Tasks_Deferred;</MAPPING>
    <MAPPING value="5">$Resources:core,Tasks_Waiting;</MAPPING>
  </MAPPINGS>
  <Default>$Resources:core,Tasks_NotStarted;</Default>
</Field>