comindware.ui
Version:
Comindware Core UI provides the basic components like editors, lists, dropdowns, popups that we so desperately need while creating Marionette-based single-page applications.
23 lines (18 loc) • 568 B
JavaScript
/**
* Developer: Ksenia Kartvelishvili
* Date: 04.03.2015
* Copyright: 2009-2016 Comindware®
* All Rights Reserved
* Published under the MIT license
*/
;
import 'lib';
import { helpers } from 'utils';
import SelectableBehavior from '../../../../../models/behaviors/SelectableBehavior';
import RadioButtonModel from '../models/RadioButtonModel';
export default Backbone.Collection.extend({
initialize() {
helpers.applyBehavior(this, SelectableBehavior.SingleSelect);
},
model: RadioButtonModel
});