作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
应该给出什么类型的值.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/
我是一名优秀的程序员,十分优秀!