ui.Form.getNode

Get the DOM node of the form.

Syntax

getNode()
  RETURNING result om.DomNode

Usage

The getNode() method returns the DOM node containing the abstract representation of the window/form.

After loading and displaying a form with OPEN FORM / DISPLAY FORM or with OPEN WINDOW ... WITH FORM, get the form object for example with ui.Dialog.getForm() and use the getNode() method to query the DOM node corresponding to the form.

Example

DEFINE n om.DomNode,
       f ui.Form

INPUT BY NAME ...
   ...
   LET f = DIALOG.getForm()
   LET n = f.getNode()
   ...