如何在 SuggestBox 中显示所有可能的值

发布于 2024-12-06 00:35:49 字数 459 浏览 0 评论 0原文

我想在 SuggestBox 中显示所有可能的值。

当然,我有以下代码(settingName 是一个SuggestBox)

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

不幸的是,建议框显示任何内容。当然,settingName 与一个预言机相关联,其中包含多个值。

我疯了吗?

根据文档:

公共无效showSuggestionList()

显示当前的建议列表。

I would like to display all possible values in a SuggestBox.

Naturally, I have the following code (settingName is a SuggestBox)

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

Unfortunately, the suggestbox displays anything. Of course, the settingName is associated to an oracle with several values inside it.

Am I crazy ?

According to the documentation :

public void showSuggestionList()

Show the current list of suggestions.

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

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

发布评论

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

评论(2

猫瑾少女 2024-12-13 00:35:49

You need to set the defaults to show by suggestOracle.setDefaultSuggestionsFromText(..)

意犹 2024-12-13 00:35:49

显示列表时,SuggestBox 将向预言机询问要显示的值。如果文本框为空,则将调用 requestDefaultSuggestions(默认情况下调用 requestSuggestions)。

When showing the list, the SuggestBox will ask the oracle for values to show. If the text box is empty, then requestDefaultSuggestions will be called (which by default calls requestSuggestions).

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