Form

The Form section in the settings.agconf file manages the properties available in Form Designer.

The Form element defines the format of a form type.

Syntax

<Form>
    <File attributes>
      <DynamicProperties> dynamic property list </DynamicProperties>
      <Items> item list </Items>
    </File>
</Form>

Child elements

The Form element may contain the following child elements:

  1. One or more File elements.

Example

<Form>   
  <File extension="4fdm" isManaged="true">       
    <DynamicProperties>    
      <DynamicProperty
          name="T_QUERY"
          type="BOOLEAN"
          label="canSearch"                              
          initialValue="1"                              
          description="Allow search using Query By Example"/>            
      <DynamicPropertyGroup 
          name="user" 
          label="Functionality"                                            
          description="User properties group"                                 
          properties="T_QUERY " />       
    </DynamicProperties>       
      <Items>            
        <Item 
           nodeName="Record" 
           dynamicProperties="T_QUERY"/>       
      </Items>    
  </File>
</Form>