You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/UI/Shared/Toolbar/Radio/RadioButtonCollectionView.js

40 lines
1.1 KiB

'use strict';
11 years ago
define(
[
'marionette',
11 years ago
'Shared/Toolbar/Radio/RadioButtonView',
'Config'
], function (Marionette, RadioButtonView, Config) {
return Marionette.CollectionView.extend({
11 years ago
className: 'btn-group',
itemView : RadioButtonView,
11 years ago
attributes: {
'data-toggle': 'buttons-radio'
},
11 years ago
initialize: function (options) {
this.menu = options.menu;
11 years ago
if (this.menu.storeState) {
this.setActive();
}
},
11 years ago
setActive: function () {
var storedKey = Config.GetValue(this.menu.menuKey, this.menu.defaultAction);
11 years ago
this.collection.each(function (model) {
if (model.get('key').toLocaleLowerCase() === storedKey.toLowerCase()) {
model.set('active', true);
}
else {
model.set('active, false');
}
});
}
});
});