# SearchSetActor

No description available

# Properties

  • Parent: Actor

  • Type: SearchSetActor

# Parameter

# Parameters in the Layout

Name Type and Values Description
moduleName Type: string or null
Default value: module of context
Specifies the Core Engine Module which configuration must be loaded.
searchSetId Type: string or null
Default value:
  • If actor RelationActor is defined, the attributes relationName from the actor
  • default
Defines the ID of the configuration that must be loaded.
isSearch Type: boolean
Default value: true
Determines whether the configuration applies to the search view or the subpanel view.
staticSearchSet Type: SearchRendererSetItem Prevents another configuration from being loaded if a configuration is already predefined in the layout.
relationActor Type: RelationActor or null Required for the definition of searchSetId
referenceFindActor Type: ReferenceFindActor or null Required to get the RelationActor

# SearchRendererSetItem

type SearchRendererSetItem = {
    searchPaging?: Array<number>,
    searchDefaultPageSize?: number,
    searchSortFields?: Array<string>,
    searchDefaultSortField?: string,
    searchDefaultSortOrder?: SortOrder,
    searchAdditionalRestrictions?: string,
    searchResultViewTypes?: Array<ResultViewType>,
    searchRenderers?: Array<string>,
    searchResultTileRenderer?: string,
    searchResultListRenderer?: string,
    searchResultGridRenderer?: string,
    subpanelPaging?: Array<number>,
    subpanelDefaultPageSize?: number,
    subpanelSortFields?: Array<string>,
    subpanelDefaultSortField?: string,
    subpanelDefaultSortOrder?: SortOrder,
    subpanelCreateRelation?: boolean,
    subpanelQuickCreate?: boolean,
    subpanelResultViewTypes?: Array<ResultViewType>,
    subpanelTileRenderer?: string,
    subpanelListRenderer?: string,
    subpanelGridRenderer?: string,
}

# SortOrder

type SortOrder =
        'asc' |
        'desc';

# ResultViewType

type SortOrder =
        'Tile' |
        'List' |
        'Grid';
Request missing documentation