I have the following jsf code for a primefaces input, which is being populated by a bar code scanner. After each scan I need to do something in the bean clear the input and refocus on it for the next scan. So far the bean works fine but the clear is not and I haven't started refocusing yet. Any Ideas...
<p:inputText id="testInput" value="#{barcodeHelper.barcodeData}" onkeyup="if (event.keyCode == 13){onchange(); return false;}">
<p:ajax listener="#{barcodeHelper.barListener()}" update="testInput" process="@this" event="change"/>
</p:inputText>
and a the listener does this
public void barListener(){
if(barcodeData.length() == 13){
ean = barcodeData;
//Will do more
}
//other bar code Lengths will be dealt with maybe a switch is better
//clear the data just read
barcodeData = null;
}
I get to the listener fine but Unfortunately the update="testInput" does not work. What am I missing here? Thanks for your help.