EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: gongjw123 on October 12, 2014, 06:47:12 PM



Title: disable submit the form on enter key for teasyui-textbox
Post by: gongjw123 on October 12, 2014, 06:47:12 PM
when there is  "type='submit'"  in form , how to disable submitting the form on enter keypress for easyui-textbox.


Title: Re: disable submit the form on enter key for teasyui-textbox
Post by: stworthy on October 13, 2014, 12:00:46 AM
Returning false in the bound 'submit' event will disable the form submitting.
Code:
$("#ff").submit(function(e){
    return false;
});