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,840
  • 9
  • 39
  • 52
German_Kast
  • 169
  • 2
  • 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,246
  • 2
  • 13
  • 35