use of com.jfoenix.skins.JFXTimePickerSkin in project JFoenix by jfoenixadmin.
the class JFXTimePickerBehavior method onAutoHide.
/**************************************************************************
* *
* Mouse Events handling (when losing focus) *
* *
*************************************************************************/
@Override
public void onAutoHide() {
JFXTimePicker datePicker = (JFXTimePicker) getControl();
JFXTimePickerSkin cpSkin = (JFXTimePickerSkin) datePicker.getSkin();
cpSkin.syncWithAutoUpdate();
if (!datePicker.isShowing())
super.onAutoHide();
}
Aggregations