Click or drag to resize

MapperDatasheetIsOmittedWhenHidden Method

Determines whether or not this field should be included in the HTML if it is hidden. There are two aspects to this: 1) Data sensitivity - If the data is marked sensitive and it is not visible in the UI then DO NOT put it in the HTML! 2) Performance - We don't want stuff we don't need in the HTML. However, we often need hidden data in the HTML for use in some client-side script.

Namespace:  NetQuarry.Data.WebMappers
Assembly:  EAP.WebMappers (in EAP.WebMappers.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
protected bool IsOmittedWhenHidden(
	IField fld
)

Parameters

fld
Type: NetQuarry.DataIField
The field in question.

Return Value

Type: Boolean
True if the field is should be included in the HTML even if hidden, else False.
See Also