允许在第一遍、光标位置选择 JSF 输入文本
我们在 JSF 输入中看到了奇怪的行为,而这在常规 html 输入字段中是看不到的。
该字段是一个搜索框,用户通常会在该字段上滑动鼠标以突出显示所有现有文本,然后开始重复输入。
您可以在 Google 上尝试此操作以了解我的意思(键入搜索,离开字段,现在单击条目的右侧,向左拖动鼠标 - 瞧,所有文本都会突出显示。)
如果我们在 JSF 应用程序中尝试完全相同的过程,光标只会跳转到索引 0,< /strong> 并且没有突出显示任何文本。用户必须重复该步骤而不离开该字段才能真正突出显示文本。
所以我的问题是a)为什么有区别b)如何解决它
JSF 2.0 (MOjarra)
<h:inputText
class="requiredFields"
id="Search_String"
value="#{searchManager.searchString}"
maxlength="#{searchManager.searchTypeMaxLength()}" />
We are seeing odd behavior with JSF inputs that we dont see on regular html input fields.
The field is a search box, and users will commonly swipe the mouse across the field to highlight all existing text, and start overtyping.
You can try this on Google to see what i mean (type a search, leave the field, now clickin on the right side of your entry drag the mouse left - voila, all text is highlighted.)
If we try this exact same process in our JSF app, the cursor just jumps to index 0, and no text is highlighted. Users must repeat the stpe without leaving the field for it to actually highlight the text.
So my question is a) why the difference b) how to work around it
JSF 2.0 (MOjarra)
<h:inputText
class="requiredFields"
id="Search_String"
value="#{searchManager.searchString}"
maxlength="#{searchManager.searchTypeMaxLength()}" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明,这是一些 jQuery 验证的 hacky 实现的结果。一旦错误的库被删除,文本框的行为就像文本框应该的一样!
Turns out this was the result of a hacky implementation of some jQuery validation. Once the faulty library was removed the text box behaves like a text box should!