target

Specifies the object upon which the action will occur.

Syntax

Reference_Syntax.target = "ObjectName | Reference_Syntax | URL"

Values

Type

Values

String

A valid string representing the name of a form design object, a reference syntax expression, or a URL where data is sent.

The value of this property is expected to be compatible with the value of the targetType property. For instance, it would be considered an error for the targetType property to reference a page area and the target property to reference a content area, or vice versa.

Version

XFA 2.4

Examples

JavaScript

xfa.event.target = "click"; 
- or - 
Subform1.breakAfter.targetType = "contentArea"; 
Subform1.breakAfter.target = "#ContentArea2";

FormCalc

xfa.event.target = "click" 
- or - 
Subform1.breakAfter.targetType = "contentArea" 
Subform1.breakAfter.target = "#ContentArea2"

// Ethnio survey code removed