Member Junction
    Preparing search index...
    Index

    Constructors

    Properties

    AvailableRecords: BaseEntity<unknown>[] = []

    The list of records that are available

    DisplayField: string = ''

    The field name within the entity to show in the list items

    DisplayIconField: string = ''

    The field name within the entity that has a CSS class representing an icon that should be displayed in the list items

    EntityName: string = ''

    The name of the entity to show records for.

    RecordSelected: EventEmitter<BaseEntity<unknown>[]> = ...
    RecordUnselected: EventEmitter<BaseEntity<unknown>[]> = ...
    SelectedRecords: BaseEntity<unknown>[] = []

    The list of records that are selected

    SelectedSelectedIndex: number = -1

    Index of the currently highlighted item in the selected list

    SelectedUnselectedIndex: number = -1

    Index of the currently highlighted item in the unselected list

    UnselectedRecords: BaseEntity<unknown>[] = []

    The list of records that are not selected

    Methods

    • Transfers an item from unselected to selected. If no index provided, uses the currently highlighted item.

      Parameters

      • Optionalindex: number

      Returns void

    • Transfers an item from selected to unselected. If no index provided, uses the currently highlighted item.

      Parameters

      • Optionalindex: number

      Returns void