MWF.xApplication.process.FormDesigner.Module = MWF.xApplication.process.FormDesigner.Module || {}; MWF.xDesktop.requireApp("process.FormDesigner", "Module.$Container", null, false); MWF.xApplication.process.FormDesigner.Module.Tab$Content = MWF.FCTab$Content = new Class({ Extends: MWF.FC$Container, Implements: [Options, Events], options: { "style": "default", "propertyPath": "/x_component_process_FormDesigner/Module/Tab$Content/tab$Content.html", "actions": [] }, initialize: function(tab, page, options){ this.setOptions(options); this.path = "/x_component_process_FormDesigner/Module/Tab$Content/"; this.cssPath = "/x_component_process_FormDesigner/Module/Tab$Content/"+this.options.style+"/css.wcss"; this._loadCss(); this.moduleType = "container"; this.moduleName = "tab$Content"; this.form = tab.form; this.tab = tab; this.page = page; }, _dragInLikeElement: function(module){ return false; }, load : function(json, node, parent){ this.json = json; this.node= node; this.node.store("module", this); this.node.setStyles(this.css.moduleNode); if (!this.json.id){ var id = this._getNewId(parent.json.id); this.json.id = id; } node.set({ "MWFType": "tab$Content", "id": this.json.id }); if (!this.form.json.moduleList[this.json.id]){ this.form.json.moduleList[this.json.id] = this.json; } this._initModule(); this._loadTreeNode(parent); this.setCustomStyles(); this.parentContainer = this.treeNode.parentNode.module; this._setEditStyle_custom("id"); this.parseModules(); this.json.moduleName = this.moduleName; }, _deleteModule: function(){ this.form.moduleList.erase(this); this.form.moduleNodeList.erase(this.node); this.form.moduleElementNodeList.erase(this.node); //this.tab.containers.erase(this); this.node.destroy(); this.actionArea.destroy(); delete this.form.json.moduleList[this.json.id]; this.json = null; delete this.json; this.treeNode.destroy(); } });