Skip to content

OpenDialogOptions.onInput method

OpenDialogOptions › onInput

Unofficial

Callback invoked when the dialog input value changes.

Signature:

onInput(e: KeyboardEvent, value: string, callback: (value: unknown) => void): void

Parameters:

Parameter Type Description
e KeyboardEvent The keyboard event.
value string The current input value.
callback (value: unknown) => void The callback to invoke with the result.

Returns: void