- Display Name
Content Type [BB-NoDim]
- Internal Name
E_REPORT_WS_CONTENT_TYPE
- Advanced Mode only
- True
- Description
- ImageSrc
- default.gif
- DisplayInPortal
- false
- Trigger
PageStart
JavaScript™: (Advanced Mode only)
// Content Type [BB-NoDim]
function %%NameSpace%%$%%InternalName%%()
{ var contentType = "UNKNOWN";
if (($H.ContentEncoding.startsWith('text/')) ||
($H.ContentEncoding.startsWith('application/')))
{ contentType = 'PAGE'; }
$F.setFact("%%NameSpace%%.%%Fact1%%", contentType);
}