3

I'm working in an active form and adding some fields dynamically using a GridView, but when I have to filter data and I press the enter key (on GridView to begin filtering) the form is submitted.

How to avoid "submitting" on press Enter key?

Pedro del Sol
  • 2,773
  • 9
  • 43
  • 50
German_Kast
  • 159
  • 1
  • 11

1 Answers1

1

Refer Link

$('#formid').on('keyup keypress', function(e) {
  var keyCode = e.keyCode || e.which;
  if (keyCode === 13) { 
    e.preventDefault();
    return false;
  }
});
Yatin Mistry
  • 1,236
  • 2
  • 13
  • 33