在t中改变国家:selectOneCountry

时间:2010-11-14 14:13:53

标签: jsf tomahawk

我正在使用t:selectOneCountry来显示JSF 1.2的国家/地区列表。我的问题有两个部分:

  1. 我可以从列表中过滤特定国家/地区吗?
  2. 我可以更改国家/地区的标题(以显示更完整的标题)吗?
  3. 我看到了: http://myfaces.apache.org/tomahawk-project/tomahawk12/tagdoc/t_selectOneCountry.html它已经提到过使用f:select过滤器,但我无法确切地知道我必须编写哪些代码。

1 个答案:

答案 0 :(得分:1)

如果我没记错,您可以使用<f:selectItem>标签将国家/地区列表限制在某些国家/地区。类似的东西:

<t:selectOneCountry ....>
  <f:selectItem value="DE"/>
  <f:selectItem value="UK"/>
  <f:selectItem value="FR"/>
</t:selectOneCountry>