Hi, I'd like to handle an "onfocus"-Event of a trinidatd input text field.
I tried this:
<tr:inputText id="RequestDate" value="#{customerBean.startDate}"
partialTriggers="timer" onfocus="#{customerBean.stopUpdate}" columns="16" />
public void stopUpdate(javax.faces.event.ActionEvent ae){
updateTimer = false;
}
It doesn't work, but renders rubbish on the page.
How can I handle this event server side?
Thanks in advance
alex

