我有如下多选列表框。
<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 方法。
知道如何完成这项工作吗?