Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

If any form field is deleted accidentally, it can be reverted by using the form XML. Please follow the steps mentioned below to revert the deletion

...

titleClick here to view the steps...
  1. Go to the forms list page
  2. Open the form from which the deleted field has to be retrieved back.Image Modified
  3. Click on 'Export' button from the form summary page, this will download the form XML fileImage Modified
  4. The list of deleted fields is available in the exported form XML underneath the <deletedFields> tag as below:
Code Block
<deletedFields>
  <field udn="age"/>
  <field udn="mrns.site"/>
</deletedFields>

      6. The deletion of form fields can be undone by adding the following section in the XML to be imported:

Code Block
<undoDeletedFields>
  <field udn="age"/>
  <field udn="mrns.site"/>
</undoDeletedFields>

      7. Move the fields from "<deletedFields>" section to "<undoDeletedFields>" which you want to undo.

      8. Import updated XML file, after import deleted field is undone:
Image Modified

...