ui.Form.findNode
Search for a child node in the form.
Syntax
findNode(
tagName STRING,
name STRING )
RETURNS om.DomNode
- tagName defines the type of the node.
- name defines the name of the node.
Usage
The findNode()
method allows you to search for a specific DOM node in the
abstract representation of the form. You search for a child node by giving its type and the name of
the element (that is the tagName and the value of the 'name' attribute).
The method returns the first element found matching the specified type (tagName) and node name. Form element names must be unique for the same type of nodes, if you want to distinguish all elements.
Example
MAIN
DEFINE f ui.Form
DEFINE n, c om.DomNode
DEFINE rec RECORD
custid INTEGER,
custname VARCHAR(40)
END RECORD
OPEN FORM f1 FROM "customer"
DISPLAY FORM f1
INPUT BY NAME rec.*
BEFORE INPUT
LET f = DIALOG.getForm()
LET n = f.findNode("FormField", "formonly.custname")
LET c = n.getFirstChild()
DISPLAY c.getAttribute("shift")
END INPUT
END MAIN