Subform

Class representing a Subform in a Page.

Functions

# Create / Edit / Clone Pages

getApiName() → {String}

Get the API name of subform

api_name

String
Examples

SampleCopycopied

var field_obj = ZDK.Page.getSubform('CFSubform');
field_obj.getApiName();

Output

CFSubform

# Create / Edit / Clone Pages

getField(api_name) → {SubformField}

Get the Subform Field by api name

Parameters:
Name Type Description
api_name String

Api Name of field

SubformField
Example

SampleCopycopied

ZDK.Page.getSubform('CFSubform').getField('Account');