I have two managed beans NavigationState and ClientManagerboth are viewScope.
NavigationStatehas the getContentPage() method that is referenced on the viewAction:
<c:metadata>
<c:viewAction action="#{navState.init('client', 'clientDetails')}"/>
</c:metadata>
ClientManagerhas the searchingClients method that is referenced on the bootsfaces inputText
<b:inputText placeholder="nome" id="name"
value="#{clientManager.clientOnSearch.firstName}"
style="background: rgb(251, 251, 251) none repeat scroll 0% 0%;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);">
<c:ajax execute="name" event="keyup"
listener="#{clientManager.searchingClients()}" />
</b:inputText>
When I type a key on this input text field the only method called is the getContentPage() from the NavigationStateand not the searchingClients() from clientManager
Any idea why this is happening ?
Thank you
Bruno