ListFormClosing Element

The ListFormClosing element defines the closing section in a form for a list.

Syntax

<ListFormClosing>
</ListFormClosing>

Element Relationships

Parent Elements
Form

Remarks

The ListFormClosing element is used in the SCHEMA.XML file with the other list form elements to create the Display, Edit, and New forms for a list.

You can use the ListForm element to request the rendering of a particular form for a particular list (in other words, of the definitions contained by the list form elements in the SCHEMA.XML file for the list).

Example

The following example illustrates the layout of list form elements that is used in the SCHEMA.XML file.

<Forms>
  <Form Type="EditForm" Url="editform.htm">
    <ListFormOpening>
      ...
    </ListFormOpening>
    <ListFormButtons>
      ...
    </ListFormButtons>
    <ListFormBody>
      ...
    </ListFormBody>
    <ListFormClosing>
      ...
    </ListFormClosing>
  </Form>
      ...
</Forms>