我正在尝试在 a中执行action
through ,但是当将放在数据表中时不会调用 ,如下所示commandButton
dataTable
action
commandButton
<h:form>
<h:dataTable value="#{bean.list}" var="item">
<h:column>
<h:commandButton value="submit" action="#{bean.submit}" />
</h:column>
</h:dataTable>
</h:form>
当我移出commandButton
时dataTable
,action
成功执行。commandButton
在数据表内部时有什么问题?有同样的commandLink
问题。