我有一个带有菜单2选项的工作弹出按钮,需要“保持/记住”用户可见的所选项目,换句话说,下次弹出菜单时,之前做出的选择应该是可见的(例如突出显示)。
selectMenuButton: SC.PopupButtonView.extend({
layout: {left:10, bottom: 10, height: 18, width:100},
controlSize: SC.SMALL_CONTROL_SIZE,
title: 'Menu',
menu: SC.MenuPane.extend({
layout: { width: 150 },
items: [
{ title: 'option1', checkbox: YES, action: 'action1',target: 'App.Controller1'},
{ title: 'option2', checkbox: NO, action: 'action2',target: 'App.Controller2'}
]
}),
}),
我尝试过classnames css .active或.sel,但这不起作用。 请提前一些建议。