0

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

  1. 我可以从列表中过滤特定国家吗?
  2. 我可以更改国家名称(以显示更完整的名称)吗?

我看过: http: //myfaces.apache.org/tomahawk-project/tomahawk12/tagdoc/t_selectOneCountry.html,它提到了使用 f:select 过滤器,但我无法弄清楚我必须写什么代码。

4

1 回答 1

1

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

<t:selectOneCountry ....>
  <f:selectItem value="DE"/>
  <f:selectItem value="UK"/>
  <f:selectItem value="FR"/>
</t:selectOneCountry>
于 2010-11-14T20:31:48.050 回答