Can I modify SelectManyMenu component like autoComplete component in primefaces. In detail, instead of fetching all data to SelectManyMenu component at one time, I want to fetch the data according to the user's inputs (letters).I want to fetch data in lazy mode.
Below code is not working..."Key up" event is not catched.
<p:SelectManyMenu value="EmployeeList" var="list">
<f:selectItems itemLabel="list.surname" itemValue="list.id"/>
<p:ajax event="keyup" listener="#{bean.doSomething}"/>
</p:SelectManyMenu>
Thanks in advance.