EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: karogel on August 10, 2016, 09:09:03 PM



Title: textbox lostfocus or focusout
Post by: karogel on August 10, 2016, 09:09:03 PM
Is there a event in textbox like lost focus or focus out


Title: Re: textbox lostfocus or focusout
Post by: stworthy on August 11, 2016, 02:34:50 AM
Call 'textbox' method to get the text box, you will be able to bind any events on it.
Code:
var t = $('#tt');
t.textbox('textbox').bind('blur', function(e){
//...
});