asp.net - how to force textchanged to work onblur? -
actually want tabbing in gridview rowwise have done it. problem have done using ontextchange event whenever hav tabbing have text , enter tab,then works , requirement tab should done without entering text 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