Search in sources :

Example 1 with FocusEvent

use of elemental2.dom.FocusEvent in project kie-wb-common by kiegroup.

the class TimePicker method onViewElementBlur.

private Object onViewElementBlur(final Event event) {
    final FocusEvent focusEvent = (FocusEvent) event;
    onBlur(focusEvent, getInputBind());
    return this;
}
Also used : FocusEvent(elemental2.dom.FocusEvent)

Example 2 with FocusEvent

use of elemental2.dom.FocusEvent in project kie-wb-common by kiegroup.

the class TimePicker method inputOnBlur.

private Object inputOnBlur(final Event event) {
    final FocusEvent focusEvent = (FocusEvent) event;
    onBlur(focusEvent, view.getElement());
    return this;
}
Also used : FocusEvent(elemental2.dom.FocusEvent)

Aggregations

FocusEvent (elemental2.dom.FocusEvent)2