选择 GWT SuggestBox 焦点上的所有内容

发布于 2024-11-09 05:21:44 字数 104 浏览 0 评论 0原文

我一直在搜索,但找不到在焦点上选择 GWT SuggestBox 小部件中所有文本的可用示例。我知道您必须将 focusListener 附加到小部件,但是然后呢?有人可以提供一个可行的例子吗?

I've been searching and searching and can't find a usable example of selecting all text within a GWT SuggestBox widget on focus. I understand you have to attach a focusListener to the widget, but then what? Can someone provide a working example of this?

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

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

发布评论

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

评论(2

终止放荡 2024-11-16 05:21:44

由于我在网上找到的每个示例都使用已弃用的代码(addFocusListener 方法),因此我最终使用 addFocusHandler 方法来解决这个问题。

这是如何完成的:

    mySuggestBox.getTextBox().addFocusHandler(new FocusHandler() {
        @Override
        public void onFocus(FocusEvent event) {
            mySuggestBox.getTextBox().selectAll();
        }
    });

Since every example I'd found online was using deprecated code (addFocusListener method), I ended up figuring this one out using the addFocusHandler method instead.

Here's how it was done:

    mySuggestBox.getTextBox().addFocusHandler(new FocusHandler() {
        @Override
        public void onFocus(FocusEvent event) {
            mySuggestBox.getTextBox().selectAll();
        }
    });
童话 2024-11-16 05:21:44

我只是在创建 SuggestBox 时将“addFocusListener”应用到 SuggestBox 内的“TextBox”(其中,当您需要创建 SuggestBox 时,可以访问 TextBox 本身)。我想在某种程度上,这种方式更符合逻辑。

I simply applied "addFocusListener" to the "TextBox" inside the SuggestBox in the creation of the SuggestBox (where the TextBox itself is reachable as you need it for the creation of the SuggestBox). I guess that in a way it's more logical this way.

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