我正在使用t:selectOneCountry来显示JSF 1.2的国家/地区列表。我的问题有两个部分:
我看到了: http://myfaces.apache.org/tomahawk-project/tomahawk12/tagdoc/t_selectOneCountry.html它已经提到过使用f:select过滤器,但我无法确切地知道我必须编写哪些代码。
答案 0 :(得分:1)
如果我没记错,您可以使用<f:selectItem>
标签将国家/地区列表限制在某些国家/地区。类似的东西:
<t:selectOneCountry ....>
<f:selectItem value="DE"/>
<f:selectItem value="UK"/>
<f:selectItem value="FR"/>
</t:selectOneCountry>