how to force textchanged to work onblur?

前端 未结 1 1459
生来不讨喜
生来不讨喜 2021-01-23 08:34

actually i want to do tabbing in a Gridview rowwise i have done it. Problem is that i have done by using onTextChange event now whenever i hav to do tabbing i have to text and

相关标签:
1条回答
  • 2021-01-23 08:46

    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();
    });
    
    0 讨论(0)
提交回复
热议问题