更改 t:selectOneCountry 中的国家/地区

发布于 2024-10-02 04:59:35 字数 391 浏览 6 评论 0原文

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

  1. 我可以从列表中过滤特定国家/地区吗?
  2. 我可以更改国家/地区的标题(以显示更完整的标题)吗?

我见过: http://myfaces.apache.org/tomahawk-project/tomahawk12/tagdoc /t_selectOneCountry.html 并提到使用 f:select 过滤器,但我无法确切地弄清楚我必须编写哪些代码。

I am using t:selectOneCountry to show a country list with JSF 1.2. My quesion has two parts:

  1. Can I filter a specific country from the list?
  2. Can I change the title of a country (to show a more complete title)?

I have saw:
http://myfaces.apache.org/tomahawk-project/tomahawk12/tagdoc/t_selectOneCountry.html and it has mentioned using f:select filters but I can't figure out exactly what code I must write.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

彡翼 2024-10-09 04:59:35

如果我没记错的话,您可以使用 标签将国家/地区列表限制为某些国家/地区。像这样的东西:

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

If I remember correctly you can use <f:selectItem> tags to restrict the country list to some countries. Something like:

<t:selectOneCountry ....>
  <f:selectItem value="DE"/>
  <f:selectItem value="UK"/>
  <f:selectItem value="FR"/>
</t:selectOneCountry>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文