Interface IControlAttributeDataSource

interface IControlAttributeDataSource {
    cssClass?: string;
    defaultValue?: any;
    description?: ResourcedString;
    disabledExpression?: string;
    displayName: ResourcedString;
    hiddenExpression?: string;
    hideOnDisable?: boolean;
    ignoreRestrictions?: boolean;
    limitDataSourceType?: string;
    localizable?: string | boolean;
    migrationValue?: undefined;
    optional?: boolean;
    order?: number;
    required?: string | boolean;
    triggerResizeOnChange?: boolean;
    type: "DataSource" | DataSource;
}

Hierarchy

  • BaseControlAttribute
    • IControlAttributeDataSource

Properties

cssClass?: string
defaultValue?: any
description?: ResourcedString
disabledExpression?: string
displayName: ResourcedString
hiddenExpression?: string
hideOnDisable?: boolean
ignoreRestrictions?: boolean
limitDataSourceType?: string
localizable?: string | boolean
migrationValue?: undefined
optional?: boolean
order?: number
required?: string | boolean
triggerResizeOnChange?: boolean
type: "DataSource" | DataSource