Skip to main content

IMapFormInput

geovisto-mapReadme | API


geovisto-map / IMapFormInput

Interface: IMapFormInput

This interface represents description of form input.

Author

Jiri Hynek

Methods

create()

create(): HTMLElement

It creates an input element.

Returns

HTMLElement

Source

model/types/inputs/IMapFormInput.ts:11


getValue()

getValue(): unknown

It returns value of the input element.

Returns

unknown

Source

model/types/inputs/IMapFormInput.ts:16


setDisabled()

setDisabled(disabled): void

It sets the input disabled.

Parameters

disabled: boolean

Returns

void

Source

model/types/inputs/IMapFormInput.ts:30


setValue()

setValue(value): void

It sets value of the input element.

Parameters

value: unknown

Returns

void

Source

model/types/inputs/IMapFormInput.ts:23