I'm trying to process an input and execute an action in JSF, but the action is not even executed. here is my code trying to reference the component with style class:
<h:panelGroup layout="block">
<p:inputText id="txtClientCIN" widgetVar="ClientCIN" value="#{client.clientCIN}" required="true" styleClass="textcin"/>
<p:commandButton id="btnSearchClient" icon="ui-icon-search" action="#{client.checkCIN}" process="@(.textcin)" update="@form" style="margin-left: 10px;"/>
</h:panelGroup>
i tried to reference it with the id by setting process="txtClientCIN"
but did'nt work also.
when i change the process to @form
the checkCIN()
method gets executed just fine.