Interface IControlAttributeTextInput

interface IControlAttributeTextInput {
    cssClass?: string;
    defaultValue?: string | ResourcedString;
    description?: ResourcedString;
    disabledExpression?: string;
    displayName: ResourcedString;
    hiddenExpression?: string;
    hideOnDisable?: boolean;
    localizable?: string | boolean;
    migrationValue?: undefined;
    order?: number;
    required?: string | boolean;
    triggerResizeOnChange?: boolean;
    type: "TextInput" | TextInput;
}

Hierarchy

  • BaseControlAttribute
    • IControlAttributeTextInput

Properties

cssClass?: string
defaultValue?: string | ResourcedString
description?: ResourcedString
disabledExpression?: string
displayName: ResourcedString
hiddenExpression?: string
hideOnDisable?: boolean
localizable?: string | boolean
migrationValue?: undefined
order?: number
required?: string | boolean
triggerResizeOnChange?: boolean
type: "TextInput" | TextInput