Sproutcore SC.MenuPane保留/记住/显示所选项目

时间:2016-08-31 11:22:30

标签: sproutcore sproutcore-views

我有一个带有菜单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,但这不起作用。 请提前一些建议。

0 个答案:

没有答案