I have multi-select listbox as below.
<t:selectManyListbox id="sourceCars" style="width: 40%;"
value="#{PersonalInformationDataBean.listOfUsers002}" size="10">
<t:selectItems value="#{PersonalInformationDataBean.showAllMyRemData()}" var="t"
itemLabel="#{t.title}" itemValue="#{t.status}" >
</t:selectItems>
</t:selectManyListbox>
What I want is call a Java method say callMeOnDoubleClick()
if I double click the item in the listbox.
Any idea how to get this done?