asp.net - how to force textchanged to work onblur? -
possible duplicate:
how force textchanged work onblur ??
actually want tabbing in gridview rowwise have done it.
problem have done using ontextchange
event whenever have tab away.
have text , enter tab, works , requirement tab should done without entering text also
i'm having code want forcefully onblur event. ???
you write little javascript(using jquery) when onblur event occurs txtchanged event called on client side. like
$('#idhere').blur(function() { $('#idhere').change(); });
Comments
Post a Comment