Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

keypress - Lov Popup item

ryuNov 10 2009 — edited Nov 10 2009
Hi friends

I have one lov popup in my page.

This can only accept on keypress NUMBERS.

I put in html form attributtes
onkeypress="javascript:somentenumeros();"

in my include I put this:
function somentenumeros(){
if (document.all) // Internet Explorer
var tecla = event.keyCode;
else if(document.layers) // Nestcape /Firefox
var tecla = e.which;

if ((tecla > 47 && tecla < 58)) // numeros de 0 a 9
return true;
else {
if (tecla != 8) // backspace
//event.keyCode = 0;
return false;
else
return true;
}
}

But it´s not working......
Still is accepting letters.. why?

thanks
This post has been answered by jariola on Nov 10 2009
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 8 2009
Added on Nov 10 2009
1 comment
372 views