Type Alias BookmarkFieldItem

type BookmarkFieldItem = {
    qAndMode?: boolean;
    qDef?: FieldDefEx;
    qExcludedValues?: FieldValue[];
    qExcludedValuesCount?: number;
    qLocked?: boolean;
    qOneAndOnlyOne?: boolean;
    qSelectInfo?: SelectInfo;
    qValues?: FieldValue[];
    qValuesCount?: number;
}
Index

Properties

qAndMode?: boolean

If set to true, selections within a list object are made in AND mode; If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in and-mode, all records that are associated with Customer 1 and Customer 2 are selected. The default value is false; selections within a list object are made in OR mode. If you have a list object that lists all customers, by selecting Customer 1 and Customer 2 while in or-mode, all records that are associated with either Customer 1 or Customer 2 are selected. This parameter is not returned if set to false.

qDef?: FieldDefEx

Name and type of the field.

qExcludedValues?: FieldValue[]

List of excluded values. Either the list of selected values or the list of excluded values is displayed.

qExcludedValuesCount?: number

Count of excluded values. Indicates if the ExcludedValues field is loaded.

qLocked?: boolean

Indicates if the field is locked. Default is false.

qOneAndOnlyOne?: boolean

If set to true, the field has always one selection (not 0 and not more than 1). If another value is selected, the previous one is unselected. The default value is false. This parameter is not returned if set to false.

qSelectInfo?: SelectInfo

Information on the selections criteria.

qValues?: FieldValue[]
qValuesCount?: number

Count of selected values. Indicates if the Values field is loaded.