rstaib / jquery-bootgrid

Nice, sleek and intuitive. A grid control especially designed for bootstrap.
http://www.jquery-bootgrid.com
MIT License
972 stars 364 forks source link

Modal Form closes when pressing enter key on Search Box #351

Open gmramil2017 opened 7 years ago

gmramil2017 commented 7 years ago

Hi,

When trying to input some text in search box of the bootgrid and press enter. The entire modal form closes.

How can enter key be disabled when searching.

Thanks, /gmr

gmramil2017 commented 7 years ago

Got it!

$("input:text").keypress(function(event) { if (event.keyCode == 13) { event.preventDefault(); return false; } });