EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: joe on August 13, 2013, 03:40:03 PM



Title: DateBox - onBlur event?
Post by: joe on August 13, 2013, 03:40:03 PM
Is there an onBlur/onLostFocus event with the datebox?


Title: Re: DateBox - onBlur event?
Post by: stworthy on August 13, 2013, 07:50:53 PM
Get the textbox and you will be able to bind a blur event to it.
Code:
var tb = $('#cc').datebox('textbox');
tb.bind('blur',function(){
  //...
});