Interface InputValidationResult<ValueType>

The input related widgets, such as textbox and combobox.

interface InputValidationResult<ValueType> {
    error?: string;
    rawValue?: string;
    server?: boolean;
    value?: ValueType;
}

Type Parameters

  • ValueType

Hierarchy (view full)

Properties

error?: string
rawValue?: string
server?: boolean
value?: ValueType