reenter

Specifies whether the enter event is occurring for the first time. The enter event occurs each time a user clicks in a field.

The first time a user clicks in a field, an enter event is sent with the reenter property set to false . If the user clicks in the field again or presses the Enter key, another enter event is sent with the reenter property set to true .

JavaScript Syntax

Reference_Syntax.reenter = false | true; 
- or - 
Reference_Syntax.reenter = 0 | 1;

FormCalc Syntax

Reference_Syntax.reenter = 0 | 1

Values

Type

Values

Boolean

  • true | 1

  • false | 0

The enter event has already occurred.

  • false | 0

The enter event occurs for the first time.

Applies to

Version

XFA 2.1

Examples

JavaScript

xfa.event.reenter = 0;

FormCalc

xfa.event.reenter = 0

// Ethnio survey code removed