MWF.xApplication.process.FormDesigner.Module = MWF.xApplication.process.FormDesigner.Module || {}; MWF.xDesktop.requireApp("process.FormDesigner", "Module.$ElElement", null, false); MWF.xApplication.process.FormDesigner.Module.Elcarousel = MWF.FCElcarousel = new Class({ Extends: MWF.FC$ElElement, Implements: [Options, Events], options: { "style": "default", "propertyPath": "../x_component_process_FormDesigner/Module/Elcarousel/elcarousel.html" }, _initModuleType: function(){ this.className = "Elcarousel"; this.moduleType = "element"; this.moduleName = "elcarousel"; }, _createElementHtml: function(){ var html = ""; if (this.json.vueSlot){ html += this.json.vueSlot; }else{ var lineHeight = this.json.height ? ( "line-height:"+this.json.height + "px;") : ""; html += ""; html += "
"+this.json.id+"
"; html += "
"; } html += ""; return html; }, _createCopyNode: function(){ this.copyNode = new Element("div", { "styles": this.css.moduleNodeShow }); this.copyNode.addEvent("selectstart", function(){ return false; }); }, _getCopyNode: function(){ if (!this.copyNode) this._createCopyNode(); // this.copyNode.setStyle("display", "inline-block"); return this.copyNode; }, _setEditStyle_custom: function(name){ switch (name){ case "name": this.setPropertyName(); break; case "id": case "height": case "vueSlot": if (this.isPropertyLoaded) if (this.vm) this.resetElement(); break; default: break; } }, setPropertyName: function(){ // if (this.json.name){ // var input = this.node.getElement("input"); // if (input) input.set("value", this.json.name); // } }, setPropertyId: function(){ // if (!this.json.name){ // var input = this.node.getElement("input"); // if (input) input.set("value", this.json.id); // } } });