我有学生名单,每个学生都有科目列表。我正在尝试使用datagrid并迭代学生名称,在datgrid中我使用数据列表来显示主题,现在我已经添加了命令链接到这些主题,以便我可以编辑它们,但是点击主题它不会去纠正主题。我正在使用prime faces 3.4和JSF2。
<p:dataGrid var="system" value="#{testBean.students}" columns="3"
id="systemGrid" style="padding-top:0px;" rows="5">
<p:panel styleClass="gridPanel" id="gridPanel">
<h:panelGrid columns="1" style="width:100%;"
id="gridPanelComponent">
<p:dataList value="#{system.subjects}" var="service"
itemType="none" id="subList" rows="5" >
<h:commandLink style="color:#3489be;font-weight: bold;text-align:center;"
id="serviceName"
value="#{service.name}" action="#{testBean.editSubject}" >
<f:setPropertyActionListener target="#{testBean.subId}" value="#{service.id}"/>
</h:commandLink>
<p:spacer width="20" height="20" id="spacer2" />
</p:dataList>