Interface TreeDataSourceMetadata

interface TreeDataSourceMetadata {
    autoRefreshWithoutCache?: boolean;
    expandMultiple?: boolean;
    id: string;
    restore?: boolean;
    scopeTypes?: string[];
    selectMultiple?: boolean;
    [key: string]: any;
}

Hierarchy

  • BaseDataSourceMetadata
    • TreeDataSourceMetadata

Indexable

  • [key: string]: any

Properties

autoRefreshWithoutCache?: boolean

If true the tree will be refreshed with caching disbabled after the first load

expandMultiple?: boolean
id: string
restore?: boolean

Indicates weather the data source should restore the last value from local storage

scopeTypes?: string[]
selectMultiple?: boolean