多行选择 return 空

Multiple row selection return null

我正在尝试获取数据表的一些行,我认为我编写了正确的代码片段,但我的 selectedTransactions 列表为空。我缺少什么?


<p:dataTable id="financialDocumentsTable" value="#{writeoffBean.financialTransactionsList}" var="financialTransactionList" rowKey="#{financialTransactionList.txn_id}" selection="#{writeoffBean.selectedTransactions}">

<p:ajax event="page" onstart="rowsPerPageUpdate([{name:'table',value:'writeoffsForm:financialDocumentsTable'}])" />

<p:ajax event="rowSelectRadio" update="documentRevers transactionDetails" />
<p:column selectionMode="multiple" style="width:16px; text-align:center" exportable="false" />


我想通了,不要使用不必要的 proces="@this" 它以某种方式阻塞了数据表,这就是我的列表为空的原因。