UNPKG

comindware.core.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.

14 lines (10 loc) 276 B
import HeaderItemView from './HeaderItemView'; export default Marionette.CollectionView.extend({ tagName: 'ul', childView: HeaderItemView, childViewEvents: { select(model: Backbone.Model) { this.trigger('select', model); } } });