primefaces 自动完成功能支持 f:param 或 f:attribute?
我读到核心 JSF 组件支持 f:param 和 f:attribute 标记,以便将一些值传递到服务器端以用于封闭的 UI 组件。
我需要能够为 primefaces 的自动完成组件执行此操作, 以便自动完成方法能够使用 f:param 或 f:attribute 提供的参数。 我尝试找出实现此目的的方法,发现完整的方法参数是固定的,不能接受更多参数, 因此我正在考虑使用 f:param 或 f:attribute。
我使用 2.2.x 版本,根据我的实验,我似乎无法获得 f:param 或 f:attribute 工作
<p:autocomplete ...>
<f:param name="myParam" value="xxxx" />
</p:autocomplete>
primefaces 是否会支持此功能在自动完成组件上? 无论如何,我可以找出哪些标签支持这些参数,哪些标签不支持这些参数?
谢谢 !
I've read that the core JSF components support the f:param and f:attribute tag, in order to pass some values to the serverside for the enclosing UI Components.
There's a need for me to be able to do this for primefaces' autocomplete component,
so that the autocomplete method will be able to make use of the parameter supplied by the f:param or f:attribute.
I tried finding out ways to accomplish this, and found out that the complete method parameter is fixed and cannot take more arguments,
hence im thinking of using f:param or f:attribute.
Im use the 2.2.x version, and based on my experiment, i cant seem to get the f:param or the f:attribute working
<p:autocomplete ...>
<f:param name="myParam" value="xxxx" />
</p:autocomplete>
Is primefaces going to support this feature on the autocomplete component ?
Is there anyway i can find out which tags that support the parameters and those who dont ?
Thank you !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
终于我成功了!
这是 jsf 部分:
这是源代码:
Finally i got it working !
Here's the jsf part :
And here is the source :