以下のように複数選択リストボックスがあります。
<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>
私が望むのはcallMeOnDoubleClick()
、リストボックス内の項目をダブルクリックすると、Java メソッドを呼び出すことです。
これを行う方法はありますか?