h:selectManyListbox & t:selectItems value属性差异

发布于 2024-10-20 07:44:49 字数 878 浏览 5 评论 0原文

我正在查看一些现有的代码,并且很好奇 'h:selectManyListbox' 和 'h:selectManyListbox' 之间的区别是什么? 't:selectItems' 值属性是?

<h:selectManyListbox value="#{MyBean.deSelectedFields}" size="10">
  <t:selectItems id="selectItemsId" value="#{MyBean.allSelectedFields}" var="item" itemValue="#{item.value}" itemLabel="#{item.label}" />
</h:selectManyListbox>

两个组件的文档说明了相同的事情:
“value 属性设置该组件的当前值。”

http://www.jsftoolbox.com/documentation/tomahawk/09 -TagReference/tomahawk-selectManyListbox.html

http:/ /www.jsftoolbox.com/documentation/help/12-TagReference/core/f_selectItems.html

谢谢

I'm looking over some existing code and curious as to what the differnce between the 'h:selectManyListbox' & 't:selectItems' value attribute is?

<h:selectManyListbox value="#{MyBean.deSelectedFields}" size="10">
  <t:selectItems id="selectItemsId" value="#{MyBean.allSelectedFields}" var="item" itemValue="#{item.value}" itemLabel="#{item.label}" />
</h:selectManyListbox>

The documentation for both components states the same thing:
"The value attribute sets the current value for this component."

http://www.jsftoolbox.com/documentation/tomahawk/09-TagReference/tomahawk-selectManyListbox.html

http://www.jsftoolbox.com/documentation/help/12-TagReference/core/f_selectItems.html

Thanks

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

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

发布评论

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

评论(1

清引 2024-10-27 07:44:49

h:selectManyListbox 值 应绑定到选定 选择项的列表/数组。他们将在生成的 HTML 元素上设置 selected 属性,其值与列表/数组匹配。 t/f:selectItems 值 应绑定到可用 选择项的列表/数组。它们将代表所有 HTML 元素。

因此,它们仅代表组件本身的价值。 t/f:selectItems 的值并不立即是 h:selectManyListbox 的值。

The h:selectManyListbox value should be bound to a list/array of selected select items. They will set the selected attribute on the generated HTML <option> elements whose value matches the list/array. The t/f:selectItems value should be bound to a list/array of available select items. They will represent all HTML <option> elements.

So, they just represents the value of the component itself. It is not true that the value of t/f:selectItems is also immediately the value of h:selectManyListbox.

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