gpt4 book ai didi

javascript - 使用 SAPUI5 在下拉列表中选择默认值

转载 作者:行者123 更新时间:2023-11-29 19:16:25 25 4
gpt4 key购买 nike

我在 SAPUI5 的下拉框中设置默认值时遇到问题。

目前我正在使用下面的代码:

fields : [ new sap.ui.commons.DropdownBox("Cities", {
selectedKey: "City3",
items : [ new sap.ui.core.ListItem("City1", {
text : "DE (Germany)"
}), new sap.ui.core.ListItem("City2", {
text : "GB (United Kingdom)"
}), new sap.ui.core.ListItem("City3", {
text : "IN (India)"
}), new sap.ui.core.ListItem("City4", {
text : "US (United States)"
}) ]
})
}) ]

但在列表框中始终显示 DE (Germany) 值,但我想默认设置其他值。

怎么做?

最佳答案

所有 sap.ui.core.Item 都有一个名为 key 的属性 1 ,这是您可以在 DropdownBox 中引用的那个。

new sap.ui.core.ListItem("City1", {
key : "City1",
text : "DE (Germany)"
})

否则,您可以尝试使用 selectedItemId 而不是 selectedKey 2

关于javascript - 使用 SAPUI5 在下拉列表中选择默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35013761/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com