Flag indicating whether eventing is enabled for this DOM Capture snapshot.
Supported frameworks | Experience Analytics UI Capture |
Path | <global>.<session>.<message>.domCapture.eventOn |
Description | Flag indicating whether eventing is enabled for this DOM Capture snapshot. This flag is true for the first DOM capture of the page. For subsequent DOM captures of the page, the flag is false. |
Value | True or False |
Limitations | None |
Dependencies | Used by eventing to determine whether eventing is allowed for this snapshot. |
Example
This example shows a Type 12 DOM capture message:
{
// DOM Capture messages use type 12
"type": 12,
// The standard UIC message properties
"offset": 16821,
"screenviewOffset": 16817,
"count": 5,
"fromWeb": true,
"domCapture": {
"dcid": "dcid-3"
"charset": "ISO-8859-1",
"root": "<html><body><iframe id="greeting.html" tltid="tlt-4"/></body></html>",
"host": "http://www.uictest.com",
"url": "/h4/dcTest.html",
"eventOn": true,
"frames": [
{
"tltid": "tlt-4",
"root": "<html><body>Hello, World!</body></html>",
"charset": "ISO-8859-1",
"host": "http://www.uictest.com",
"url": "/h4/greeting.html"
}
],
"canvas": []
}
}