IInputStatus
Defined in: js-api/src/u2core/protocol.ts:38
Live state of ONE named input of a widget — the machine-readable counterpart of what the
user sees in a form. Values and validation are read on demand, never cached; name is the
name the widget's properties address the input by, so props[name] = value writes exactly
what typing into it would.
Properties
| Property | Type | Defined in |
|---|---|---|
caption? | string | js-api/src/u2core/protocol.ts:40 |
choices? | any[] | js-api/src/u2core/protocol.ts:44 |
description? | string | js-api/src/u2core/protocol.ts:48 |
error? | string | js-api/src/u2core/protocol.ts:47 |
name | string | js-api/src/u2core/protocol.ts:39 |
ref? | string | js-api/src/u2core/protocol.ts:49 |
required | boolean | js-api/src/u2core/protocol.ts:45 |
semType? | string | js-api/src/u2core/protocol.ts:42 |
type | string | js-api/src/u2core/protocol.ts:41 |
valid | boolean | js-api/src/u2core/protocol.ts:46 |
value | any | js-api/src/u2core/protocol.ts:43 |