control.findChildRecordControlByName()
- Last UpdatedJun 25, 2024
- 1 minute read
Use findChildRecordControlByName() method to find a control with a specific name in the child record and its children.
Syntax
control.findChildRecordControlByName(controlname);
Parameters
|
Parameter |
Description |
|---|---|
|
controlname |
Name of the control to search in the child record. |
Return Value
This method returns a control object.
Example
// Set a value for the Text control.
control.findChildRecordControlByName("Employee Name").value = "John Doe";