how to force textchanged to work onblur? [duplicate]
Possible Duplicate:
how to force textchanged to work onblur ??
Actually i want to do tabbing in a Gridview rowwise i have done it.
Problem is that i have done by usingonTextChange
event now whenever I have to tab away.
I have to text and then enter the tab, then only it works and my requirement is that tab should be done for without entering the text also
So as i'm having开发者_JS百科 all the code i want to forcefully do this onBlur event. ???You could probably write just a little javascript(using jQuery) so that when the onblur event occurs that the txtChanged event is called on the client side. Something like
$('#IdHere').blur(function() {
$('#IdHere').change();
});
精彩评论