在迭代器中设置 inputText 的 id

发布于 2025-01-08 06:27:11 字数 1054 浏览 1 评论 0原文

我的目标是将焦点设置到特定的输入文本。

由于似乎无法使用 tr:inputText 属性自动执行此操作,因此我尝试使用 Javascript。

对于 document.getElementById 我需要渲染的 html 的 id。我尝试将此 id 设置为正确的索引。然而,它是用 id varFieldIterator:0:varField 渲染的,其中数字 0 来自迭代器,并且根据我的起始值选择开始而有所不同。如果我从 SelectionStart = 10 开始,则文本框 10 的第一个索引是 0。如果我从 15 开始,然后使用 PPR 显示前 15 个文本框,它们将获得以 16 开头的 id。

我认为代码会清楚地表明我试图实现的目标:

<tr:iterator
    id="varFieldIterator"
    value="#{myController.form.model.fieldList}"
    var="field"
    rows="15"
    first="#{{myController.form.model.selectionStart}"
    varStatus="status">
  <tr:inputText
      id="varField#{status.index}"
      value="#{field.value}"
      label="Text #{status.index +1}">
</tr:iterator>

<tr:inputHidden
    id="FOCUS_TEXT"
    value="#{myController.form.model.endFocus}"></tr:inputHidden>
<trh:script>
window.onload = function() { document.getElementById('varField' + document.getElementById('FOCUS_TEXT').value).focus(); } 
</trh:script>

My goal is to set the focus to a specific inputText.

As there seems to be no way to do this automatically with an tr:inputText property, I try to use Javascript.

For document.getElementById I need the id of the rendered html <input>. I try to set this id to the correct index. However, it is rendered with the id varFieldIterator:0:varField where the number 0 comes from the iterator and is different depending on my start value selectionStart. If I start with selectionStart = 10, the 1st index for the textbox 10 is 0. If I start with 15 and then have a PPR to show the first 15 textboxes, they get the id starting with 16.

I think the code will make clear what I try to achieve:

<tr:iterator
    id="varFieldIterator"
    value="#{myController.form.model.fieldList}"
    var="field"
    rows="15"
    first="#{{myController.form.model.selectionStart}"
    varStatus="status">
  <tr:inputText
      id="varField#{status.index}"
      value="#{field.value}"
      label="Text #{status.index +1}">
</tr:iterator>

<tr:inputHidden
    id="FOCUS_TEXT"
    value="#{myController.form.model.endFocus}"></tr:inputHidden>
<trh:script>
window.onload = function() { document.getElementById('varField' + document.getElementById('FOCUS_TEXT').value).focus(); } 
</trh:script>

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

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

发布评论

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

评论(1

独享拥抱 2025-01-15 06:27:11

虽然 ID 属性接受 EL 表达式,但它仅在视图构建期间设置,而不是在视图渲染期间设置。因此,如果您使用视图构建时间标记(例如 JSTL ),它就会起作用。但此标签可能会产生不良副作用

我建议只更改您的 JavaScript 函数,以便它不再依赖于 ID。目前尚不清楚您的整个 HTML dom 结构是什么,以及您是否使用 jQuery 或不使用这会简化 HTML DOM 遍历。

使用纯 JS,您可以例如抓取第一个表单,然后抓取它的第一个输入元素:

document.forms[0].elements[0].focus();

或者您可以通过标签名称获取输入元素

document.getElementsByTagName("input")[0].focus();

或者您可以给它们全部指定一个类名,例如 通过类名获取它们

document.getElementsByClassName("specificInput")[0].focus();

这些调用是可链接的。因此,如果您知道它位于 内,那么您也可以这样做:

document.getElementById("myForm").getElementsByTagName("input")[0].focus();

While the ID attribute accepts EL expressions, it is only set during view build time, not during view render time. So if you were using a view build time tag such as JSTL <c:forEach> it would have worked. But this tag may have undesireable side effects.

I'd recommend to just change your JavaScript function so that it does not depend on IDs anymore. It's unclear what your entire HTML dom structure is and if you're using jQuery or not which would simplify HTML DOM traversal.

With plain JS, you could for example just grab the first form and then grab its first input element:

document.forms[0].elements[0].focus();

Or you could grab input elements by tag name:

document.getElementsByTagName("input")[0].focus();

Or you could give them all a class name like <tr:inputText styleClass="specificInput"> and grab them by class name:

document.getElementsByClassName("specificInput")[0].focus();

Those calls are chainable. So if you know that it's inside a <h:form id="myForm"> then you could also do for example:

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