- Display Name
Step - Usability Target ID + Type [BB]
- Internal Name
E_STEP_USABILITY_TARGET_ID
- Advanced Mode only
- True
- Description
- Combines Target ID and ID Type into a single string
- DisplayInPortal
- false
- Trigger
StepStart
JavaScript™: (Advanced Mode only)
// Step - Usability Attention Map Viewport Height [BB]
function %%NameSpace%%$%%InternalName%%()
{ if ($P["TL.STEP_TARGET_ID"].patternFound() &&
$P["TL.STEP_TARGET_ID_TYPE"].patternFound()) { var idAndType =
$P["TL.STEP_TARGET_ID"].firstValue() + "|" +
$P["TL.STEP_TARGET_ID_TYPE"].firstValue();
// Set fact for Report Group: No Dimension Report Group
$F.setFact("%%NameSpace%%.%%Fact1%%", idAndType);
}
}