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;
}
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;
}
Aggregations