- Display Name
Fact Count
- Internal Name
E_REPORT_SESSION_FACT_COUNT
- Advanced Mode only
- False
- Description
- Total count of written facts (end of session)
- ImageSrc
- default.gif
- DisplayInPortal
- true
- Trigger
SessionEnd
JavaScript™ (Advanced Mode only)
// Fact Count
function %%NameSpace%%$%%InternalName%%()
{ var fCount = 0;
for(var f in $F) { if(typeof($F[f]) == 'undefined') fCount +=
$F.factCount(f);
} $F.setFact("%%NameSpace%%.%%Fact1%%", fCount);
$F.setFact("%%NameSpace%%.%%Fact2%%", fCount);
}