0

我有一个项目列表,问题是在选择“mngr”bean 属性“selectedItems”后没有分配这些选定的项目。

<p:dataTable id="tbl" var="item" 
    value="#{mngr.itemsTableModel}" widgetVar="tbl"
    selectionMode="multiple" selection="#{mngr.selectedItems}">

    <p:column headerText="Name">
        <h:outputText value="#{item.name}"/>  
    </p:column>  
</p:dataTable>

<p:commandButton value="Assign" process="tbl"/>

即使按下“分配”按钮并完成部分处理,选择也会失败。也许即使是多选也有ajax?


使用 Linq 的 Concat 方法

items.Concat(items1)

这会将两个数组连接在一起并在 items 末尾添加 items1 ,我希望您只想要这样的 items 数组。

4

0 回答 0