item Attribute

Microsoft Office InfoPath

Show All Show All

item Attribute

Specifies an XPath expression that determines the XML Document Object Model (DOM) nodes to be edited using the editing component defined in the editWith element.

Type

      xsd:string
    

Remarks

The item attribute is a required attribute of the xmlToEdit element.

Example

The following is an example of the item attribute as it is used in the xmlToEdit element:

    <xsf:editing>
   <xsf:xmlToEdit name="CD_10"
      item="/CustomUISample/CDCollection/CD" 
      container="/CustomUISample">
      <xsf:editWith caption="CD"
         xd:autogeneration="template" 
         component="xCollection">
         <xsf:fragmentToInsert>
            <xsf:chooseFragment parent="CDCollection">
               <CD>
                  <Title></Title>
                  <Artist></Artist>
                  <Tracks>
                     <Track></Track>
                     <Track></Track>
                  </Tracks>
               </CD>
            </xsf:chooseFragment>
         </xsf:fragmentToInsert>
      </xsf:editWith>
   </xsf:xmlToEdit>
</xsf:editing>