<p:inputText value="#{bmiCalculatorBean.height}" update="@form" id="height">
<p:ajax update="@form" />
<f:convertNumber pattern="0" />
</p:inputText>
<p:inputText value="#{bmiCalculatorBean.weight}" update="@form" id="weight">
<p:ajax update="@form" />
<f:convertNumber pattern="0" />
</p:inputText>
I have a problem where after I enter a value into the first inputText and click on the "weight" inputText after a short delay the focus is lost and you need to click on the input box again.
How do I fix this?