Properties that can be passed into the constructor for PopupContentExtension.

interface PopupContentExtensionProperties {
    content?: Content | ContentProperties;
    failureMode?: FailureMode;
    id?: string;
    summaryHiddenFields?: string[];
    visibleInSummary?: boolean;
}

Hierarchy (view full)

Properties

content?: Content | ContentProperties

The ESRI Content instance to be extended.

failureMode?: FailureMode
id?: string

The unique ID to assign to the entity. If not specified, one will be generated.

summaryHiddenFields?: string[]

Names of fields that will be hidden when displayed in the a summary view. This property is only applied to "fields" Content types.

visibleInSummary?: boolean

Whether the Content is visible when being displayed in a summary view.