gpt4 book ai didi

javascript - 在 SC.SelectView 方面需要一些帮助

转载 作者:行者123 更新时间:2023-12-03 13:38:46 25 4
gpt4 key购买 nike

我试图了解它是如何工作的。我有观点:

roleSwitch: SC.SelectView.design({
layout: {top:38, height: 20, width: 256 },
items: [{ title: 'a', isEnabled: YES, checkbox: NO },
{ title: 'b', isEnabled: YES, checkbox: NO }],
itemTitleKey: 'title',
themeName: 'role',
showCheckbox: NO

})

我找不到有关 SelectView 的任何其他信息。我如何预先选择项目,选择的位置,为什么每次选择时都会出错?

最佳答案

选择:
假设你有这个:

MyApp.roleController = SC.ObjectController({
selectedRoleId: 1;
})

那么在你看来:
roleSwitch: SC.SelectView.design({
layout: {top:38, height: 20, width: 256 },
items: [{ title: 'a', isEnabled: YES, checkbox: NO, roleId: 1 },
{ title: 'b', isEnabled: YES, checkbox: NO, roleId: 2 }],
itemTitleKey: 'title',
themeName: 'role',
showCheckbox: NO,
itemValueKey: 'roleId',
valueBinding: 'MyApp.roleController.selectedRoleId'

})

您的选择将绑定(bind)到 roleController 的“selectedRoleId”

关于javascript - 在 SC.SelectView 方面需要一些帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5491680/

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