UNPKG

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.

18 lines (16 loc) 598 B
define([ 'comindware/core', 'demoPage/views/EditorCanvasView' ], function (core, EditorCanvasView) { 'use strict'; return function () { var model = new Backbone.Model({ dateTimeValue: '2015-07-20T10:46:37Z' }); return new EditorCanvasView({ editor: new core.form.editors.DateTimeEditor({ model: model, key: 'dateTimeValue', autocommit: true }), presentation: "{{#isNull dateTimeValue}}null{{else}}'{{dateTimeValue}}'{{/isNull}}" }); }; });