Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以“拆分”表格?
例如,我有两种会发生冲突的表格(表格的一行需要保留在表格 1 中,另一行需要保留在表格 2 中,依此类推)
所以我需要一种技术来使这成为可能,就像在 HTML5 中一样(form="formid")
所有黑色字段必须是相同的表单(内容)并且所有红色字段也是一个表单(提交操作)
我需要能够单独访问它们,它们就像上图一样被定位。不幸的是,我无法制作包含某些组件而其他组件不包含的特定形状的形式。
只需使用
<ui:repeat> <h:form> ... </h:form> </ui:repeat>
代替
<h:form> <ui:repeat> ... </ui:repeat> </h:form>