Interface SearchInputBindings

interface SearchInputBindings {
    autoFocus?: boolean;
    entityName: string;
    onSearch?: ((model: SearchQuery) => void);
    onValueChange?: ((val: string) => void);
    performSearch?: boolean;
    queryBuilderId?: string;
    queryBuilderOkButtonLabel?: string;
    queryModel?: QueryBuilderModel;
    queryText?: string;
    showQueryBuilder?: boolean;
}

Hierarchy (view full)

Properties

autoFocus?: boolean
entityName: string
onSearch?: ((model: SearchQuery) => void)
onValueChange?: ((val: string) => void)
performSearch?: boolean
queryBuilderId?: string
queryBuilderOkButtonLabel?: string
queryModel?: QueryBuilderModel
queryText?: string
showQueryBuilder?: boolean