智能GWT如何选择ComboBoxItem中的项目

发布于 2024-10-05 12:44:37 字数 224 浏览 3 评论 0原文

我的问题看起来应该是一个非常简单的问题,但不知怎的,事实并非如此。 SmartGwt 有一种让事情变得简单却变得过于复杂的方法!

我有一个由 LinkedHashMap 填充的 ComboBoxItem。我想要做的就是能够以编程方式选择要显示的行/值。在普通的 GWT 中,这将类似于:

listBox.setSelected(1)

我已经搜索了又搜索,但结果是空的。请有人帮忙!!!

I have what seems like it should be a really simple problem, but somehow it is not. SmartGwt has a way of taking something easy and making it overly complicated!

I have a ComboBoxItem populated by a LinkedHashMap. All I want to do is to be able to programmatically select a row/value to display. In plain GWT, this would be something like:

listBox.setSelected(1)

I have searched and searched, and I have come up empty. Please someone help!!!

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

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

发布评论

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

评论(2

ヅ她的身影、若隐若现 2024-10-12 12:44:37

假设您的地图具有

    items.put(1,"a");
    items.put(2,"b");
ComboBoxItem listBox = new ComboBoxItem();
listBox.setValueMap(items);

“Then”之类的值

listBox.setValue(1) will display "a" in listBox
listBox.setvalue(2) will display "b" in listBox

Suppose your map has values like

    items.put(1,"a");
    items.put(2,"b");
ComboBoxItem listBox = new ComboBoxItem();
listBox.setValueMap(items);

Then

listBox.setValue(1) will display "a" in listBox
listBox.setvalue(2) will display "b" in listBox
小清晰的声音 2024-10-12 12:44:37

您可以通过 setValuMap(String array[]) 设置 Combobox 项中下拉菜单的值

String []valueMap = {"A","B"};
comboBoxItem.setValueMap(valueMap);

这会将字符串数组中的值设置为组合框。您可以通过 setValue(String value) 函数以编程方式设置值。

comboBoxItem.setValue("A");

http://www.smartclient.com /smartgwt/javadoc/com/smartgwt/client/widgets/form/fields/ComboBoxItem.html

You Can set value's for drop down in Combobox item through setValuMap(String array[])

String []valueMap = {"A","B"};
comboBoxItem.setValueMap(valueMap);

this will set the value in string array to combox box. You can set value programmatically through setValue(String value) function.

comboBoxItem.setValue("A");

http://www.smartclient.com/smartgwt/javadoc/com/smartgwt/client/widgets/form/fields/ComboBoxItem.html

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