gpt4 book ai didi

javascript - 单选按钮组 -> 应赋予什么值 - .setSelected()

转载 作者:行者123 更新时间:2023-12-02 23:06:39 27 4
gpt4 key购买 nike

应该给出什么类型的值.setSelectedButton才能在RadioButtonGroup构造中选择特定的Button。

我尝试过的:

sap.ui.getCore().byId("RadioButtonGroup").setSelectedButton("idOftheButton")

预期结果:它选择此特定按钮
实际结果:错误

最佳答案

根据文档,setSelectedButton 的参数是 sap.m.RadioButton 对象本身,因此根据您注册和声明所有内容的方式,它更接近:

var button = sap.ui.getCore().byId("idOftheButton"); //find the button
sap.ui.getCore().byId("RadioButtonGroup").setSelectedButton(button);

https://sapui5.netweaver.ondemand.com/sdk#/api/sap.m.RadioButtonGroup/methods/setSelectedButton

关于javascript - 单选按钮组 -> 应赋予什么值 - .setSelected(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57559376/

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