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.

16 lines (11 loc) 382 B
import template from 'text-loader!../templates/demoProfilePanel.html'; export default Marionette.View.extend({ className: 'nav-profile_test', regions: { dateEditorRegion: '.js-date-editor-region' }, template: Handlebars.compile(template), onRender() { this.showChildView('dateEditorRegion', new Core.form.editors.DateTimeEditor()); } });