我所拥有的是数据表,并且我有返回列表的方法。
我的语法是
<h:dataTable id="imageList3"
value="#{PersonalInformationDataBean.loadReviewReportDataByIdNewFormat()}"
var="reviewMyList" width="80%" border="1">
我想要做的是#{patentMyList.patentId}
在方法中传递变量名称名称loadReviewReportDataByIdNewFormat()
。但是我不能这样做....
知道如何完成这项工作吗?
我知道如果我有 commandButton,我会使用<f:setPropertyActionListener>
.
笔记 :
如果我使用,它的工作
<h:dataTable id="imageList3"
value="#{PersonalInformationDataBean.loadReviewReportDataByIdNewFormat(1)}"
var="reviewMyList" width="80%" border="1">
然而
<h:dataTable id="imageList3"
value="#{PersonalInformationDataBean.loadReviewReportDataByIdNewFormat(#{patentMyList.patentId})}"
var="reviewMyList" width="80%" border="1">