我正在使用 a 在两列中打印两个字符串,如下面的代码所示:
<h:panelGrid
columns="2" border="1">
<ui:repeat
value="#{bean.selectedLocales}"
var="locale">
<h:outputText value="#{msg[locale]}"/>
</ui:repeat>
</h:panelGrid>
上面打印了两个语言环境en和de从同一列中的列表中获取,尽管我使用ui:repeat
and columns="2"
in <h:panelGrid>
。如何让它在两个不同的列中打印?