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.
21 lines (19 loc) • 687 B
JavaScript
define(['comindware/core', 'demoPage/views/EditorCanvasView'], function(core, EditorCanvasView) {
'use strict';
return function() {
var model = new Backbone.Model({
textValue: 'FAX7'
});
return new EditorCanvasView({
editor: new core.form.editors.TextEditor({
model: model,
key: 'textValue',
changeMode: 'keydown',
autocommit: true,
mask: 'aa*: +9(999)999-9999',
maskPlaceholder: '_'
}),
presentation: "{{#isNull textValue}}null{{else}}'{{textValue}}'{{/isNull}}"
});
};
});