Primefaces mobile - 如何在UI中编辑List <entity>?

时间:2015-05-23 22:06:01

标签: primefaces-mobile

我想为用户编辑实体列表,就像我们在普通的xhtml中一样:

strtol

在移动界面中这样做的建议是什么,因为上面的例子不起作用......

1 个答案:

答案 0 :(得分:0)

我是通过在行中添加按钮并按下弹出对话框来实现的,可以更改此实体。例如:

 <p:column headerText="Quantity">
     <p:commandButton  oncomplete="PF('lineDialog').show()" value="#{line.quantity}"  update=":panelForm:lineDetail">
        <f:setPropertyActionListener value="#{line}" target="#{indexBean.editedLine}"/>
     </p:commandButton>
  </p:column>