Click or drag to resize

IAppContextIsStrictMode Property

Determines whether or not the application is being run in "strict" mode. In strict mode platform security is more restrictive. In particular:
  • Mapper fields that are not visible are treated as "sensitive" by default (excepting fields marked as PK, UniqueKey, or SubformKey). Sensitive fields are not rendered into the HTML in any form when not visible to the current user. Since this will prevent their use in javascript, a field can be marked with FieldSecurityAttrs.DOMAccessed to specify that it should be rendered into HTML even when not visible to the current user.
  • Values posted back for mapper fields that were (or should have been) locked, hidden, or omitted when the page was rendered will be ignored. Since this will prevent values being saved that were set on such fields in javascript, a field can be marked with FieldSecurityAttrs.DOMModified to specify that posted back value changes should be accepted even when locked, hidden, or omitted.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
bool IsStrictMode { get; }

Property Value

Type: Boolean
True if application is in strict mode, else False.
See Also