Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テレリック MVC dll グリッドで Enter キーを押したときにポストバックを防止したい。これを行う方法はありますか。提案してください。ありがとう
イベントがバブリングするのを防ぐために何を試みましたか? 私は次のようなことを提案します:
$(function(){ $('.t-grid').data().tGrid.element.on('keydown',function(e){ if(e.keyCode==13){ e.stopImmediatePropagation(); } }) })