i am new in PF and JSF. Could you tell me how can i prevent default function of tab key. It's default function is to go next input area but i dont want it. I wwant to put new function behind it. I try codebelow and it doesnt work. actualy i tried it with enter key(event.keyCode==13) and it worked.
<p:column>
<p:remoteCommand name="test"
actionListener="#{otomatikHesapAcilisController.getSecimSonucu}"/>
<p:inputNumber id="inputSecim"
decimalPlaces="0"
value="#{otomatikHesapAcilisController.secim}"
onkeypress="if ( event.keyCode == 9) { test(); }"/>
</p:column>