Avoid Enter key during insert entry

D

David C

I have a ListView for view/add/edit of a table. If I accidentally hit the
Enter key while entering data the page jumps to the submit page. Is there a
way to disable the Enter key to avoid this from happening? Thanks.

David
 
G

Guest

I have a ListView for view/add/edit of a table. If I accidentally hit the
Enter key while entering data the page jumps to the submit page. Is there a
way to disable the Enter key to avoid this from happening?  Thanks.

David

<input type="text" onkeypress="return handleEnter(this, event)">

and in js

function handleEnter(field, event) {
var keyCode = event.keyCode ? event.keyCode :
event.which ? event.which : event.charCode;
if (keyCode == 13) {
event.returnValue = false;
event.cancel = true;
}
else
return true;
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,073
Latest member
DarinCeden

Latest Threads

Top