ICEfaces 组件上的锚标记

发布于 2024-09-18 09:22:18 字数 392 浏览 2 评论 0原文

我正在寻找一种通过锚标记将焦点设置到 ICEfaces 组件的方法。例如,当某个字段验证失败时,我想输出如下内容:

<a href="#xyz"> Field XYZ</a>  failed validation

然后,在 XYZ 组件上,输出如下内容:

<ice:inputText id="XYZ" anchor="xyz">

这将使用户能够单击错误消息并关注有问题的组件。这有可能吗? (我知道outputLink和inputLink组件,但错误消息通常驻留在message.properties文件中,使得组件很难使用......)

我正在使用ICEfaces版本1.8.2

I'm looking for a way to set focus to an ICEfaces component by means of an anchor tag. For instance, when a field fails validation I want to output something like this:

<a href="#xyz"> Field XYZ</a>  failed validation

and then, at the XYZ component, have something like:

<ice:inputText id="XYZ" anchor="xyz">

This would enable the user to click on the error message and get focus on the offending component. Is this in any way possible? (I'm aware of the outputLink and inputLink component, but the error message would typically reside in a message.properties file making it hard to use components...)

I'm using ICEfaces version 1.8.2

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

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

发布评论

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

评论(1

梦旅人picnic 2024-09-25 09:22:18

使用标签。他们在那里。

<h:outputLabel for="xyz">message</h:outputLabel>
<h:inputText id="xyz" />

如有必要,请替换为 ice 变体。

Use labels. There they are for.

<h:outputLabel for="xyz">message</h:outputLabel>
<h:inputText id="xyz" />

Substitute with ice variants if necessary.

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