interface IInputValueHostChangedCallback {
    onInputValueChanged?: null | InputValueChangedHandler;
}

Hierarchy (view full)

Properties

onInputValueChanged?: null | InputValueChangedHandler

Called when the InputValueHost's InputValue property has changed. If setup, you can prevent it from being fired with the options parameter of setValue() to avoid round trips where you already know the details. You can setup the same callback on individual InputValueHosts. Here, it aggregates all InputValueHost notifications.

Generated using TypeDoc v0.25.12