| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896 |
- MWF.xApplication.process.FormDesigner.Module = MWF.xApplication.process.FormDesigner.Module || {};
- MWF.require("MWF.widget.Common", null, false);
- MWF.xDesktop.requireApp("process.FormDesigner", "Property", null, false);
- MWF.xApplication.process.FormDesigner.Module.$Module = MWF.FC$Module = new Class({
- Extends: MWF.widget.Common,
- Implements: [Options, Events],
- options: {
- "style": "default",
- "actions": [
- {
- "name": "move",
- "icon": "move1.png",
- "event": "mousedown",
- "action": "move",
- "title": MWF.APPFD.LP.formAction.move
- },
- {
- "name": "copy",
- "icon": "copy1.png",
- "event": "mousedown",
- "action": "copy",
- "title": MWF.APPFD.LP.formAction.copy
- },
- {
- "name": "delete",
- "icon": "delete1.png",
- "event": "click",
- "action": "delete",
- "title": MWF.APPFD.LP.formAction["delete"]
- }
- // {
- // "name": "styleBrush",
- // "icon": "styleBrush.png",
- // "event": "click",
- // "action": "styleBrush",
- // "title": MWF.APPFD.LP.formAction["styleBrush"]
- // }
- ],
- "actionNodeStyles": {
- "width": "16px",
- "height": "16px",
- "margin-left": "2px",
- "margin-right": "2px",
- "float": "left",
- "border": "1px solid #F1F1F1",
- "cursor": "pointer"
- },
- "propertyPath": "/x_component_process_FormDesigner/Module/Label/label.html"
- },
-
- _getNewId: function(prefix, moduleName){
- var p = "";
- if (prefix){
- p = prefix+"_";
- }
- if (!moduleName) moduleName = this.moduleName;
- var idx = 1;
- var id = p+moduleName;
- var type = (this.json) ? this.json.type : this.moduleName.capitalize();
- while (this.form.checkModuleId(id, type).elementConflict){
- //while (this.form.json.moduleList[id]){
- id = p+moduleName+"_"+idx;
- idx++;
- }
- return id;
- },
- load : function(json, node, parent){
- this.json = json;
- this.node= node;
- this.node.store("module", this);
- this.node.setStyles(this.css.moduleNode);
-
- this._loadNodeStyles();
- this._loadTreeNode(parent);
- this.parentContainer = this.treeNode.parentNode.module;
- this._initModule();
- this._setEditStyle_custom("id");
- this.json.moduleName = this.moduleName;
- },
- _loadNodeStyles: function(){
- },
- _loadNodeCustomStyles: function(){
- this.setCustomStyles();
- },
- _loadTreeNode: function(parent){
- var title = this.json.name || this.json.id;
- var text = "";
- if (this.json.type==="Common"){
- text = this.json.tagName+"(Common)";
- }else{
- text = this.json.type.substr(this.json.type.lastIndexOf("$")+1, this.json.type.length);
- }
- var o = {
- "expand": true,
- "title": this.json.id,
- "text": "<"+text+"> "+title,
- "icon": ""
- };
- o.action = function(){
- if (this.module) this.module.selected();
- };
-
- if (this.nextModule){
- this.treeNode = this.nextModule.treeNode.insertChild(o);
- }else{
- this.treeNode = parent.treeNode.appendChild(o);
- }
- this.treeNode.module = this;
- },
- copyStyles: function(from, to){
- if (!this.json[to]) this.json[to] = {};
- Object.each(from, function(style, key){
- //if (!this.json[to][key])
- this.json[to][key] = style;
- }.bind(this));
- },
- removeStyles: function(from, to){
- if (this.json[to]){
- Object.each(from, function(style, key){
- if (this.json[to][key] && this.json[to][key]==style){
- delete this.json[to][key];
- }
- //if (this.json[from][key]){
- // delete this.json[to][key];
- //}
- }.bind(this));
- }
- },
- setTemplateStyles: function(styles){
- if (styles.styles) this.copyStyles(styles.styles, "styles");
- if (styles.properties) this.copyStyles(styles.properties, "properties");
- },
- clearTemplateStyles: function(styles){
- if (styles){
- if (styles.styles) this.removeStyles(styles.styles, "styles");
- if (styles.properties) this.removeStyles(styles.properties, "properties");
- }
- },
- setStyleTemplate: function(){
- if (this.form.stylesList){
- if (this.form.json.formStyleType){
- if (this.form.stylesList[this.form.json.formStyleType]){
- if (this.form.stylesList[this.form.json.formStyleType][this.moduleName]){
- this.setTemplateStyles(this.form.stylesList[this.form.json.formStyleType][this.moduleName]);
- }
- }
- }
- }
- },
- setAllStyles: function(){
- this.setPropertiesOrStyles("styles");
- this.setPropertiesOrStyles("inputStyles");
- this.setPropertiesOrStyles("properties");
- this.reloadMaplist();
- },
- _initModule: function(){
- if (!this.json.isSaved) this.setStyleTemplate();
- this.setPropertiesOrStyles("styles");
- this.setPropertiesOrStyles("inputStyles");
- this.setPropertiesOrStyles("properties");
- this._setNodeProperty();
- if (!this.form.isSubform) this._createIconAction();
- this._setNodeEvent();
- this.json.isSaved = true;
- },
- _setNodeProperty: function(){},
- _createIconAction: function(){
- if (!this.actionArea){
- this.actionArea = new Element("div", {
- styles: {
- "display": "none",
- // "width": 18*this.options.actions.length,
- "position": "absolute",
- "background-color": "#F1F1F1",
- "padding": "1px",
- "padding-right": "0px",
- "border": "1px solid #AAA",
- "box-shadow": "0px 2px 5px #999",
- "opacity": 1,
- "z-index": 100
- }
- }).inject(this.form.container, "after");
- this.options.actions.each(function(action){
- var actionNode = new Element("div", {
- "styles": this.options.actionNodeStyles,
- "title": action.title
- }).inject(this.actionArea);
- actionNode.setStyle("background", "url("+this.path+this.options.style+"/icon/"+action.icon+") no-repeat left center");
- actionNode.addEvent(action.event, function(e){
- this[action.action](e);
- }.bind(this));
- actionNode.addEvents({
- "mouseover": function(e){
- e.target.setStyle("border", "1px solid #999");
- }.bind(this),
- "mouseout": function(e){
- e.target.setStyle("border", "1px solid #F1F1F1");
- }.bind(this)
- });
-
- }.bind(this));
-
- this._createCustomIconAction();
- }
- },
- _createCustomIconAction: function(){},
-
- _setActionAreaPosition: function(){
- var p = this.node.getPosition(this.form.node.getOffsetParent());
- var y = p.y-25;
- var x = p.x;
- this.actionArea.setPosition({"x": x, "y": y});
- },
- _moveTo: function(container){
- this.parentContainer = container;
- if (!this.node){
- this._createNode();
- }
- this._resetTreeNode();
- this.node.inject(container.node);
- },
- move: function(e){
- this._createMoveNode();
- var thisDisplay = this.node.getStyle("display");
- this.node.store("thisDisplay", thisDisplay);
- this.node.setStyle("display", "none");
- this._setNodeMove(e);
- },
- copy: function(e){
- this.copyTo().move(e);
- },
- copyTo: function(node){
- if (!node) node = this.form;
- var newNode = this.node.clone(true, true);
- var newModuleJson = Object.clone(this.json);
- newNode.inject(node.node);
- var className = this.moduleName.capitalize();
- var prefix = (this.form.moduleType=="page") ? "PC" : "FC";
- var newTool = new MWF[prefix+className](this.form);
- newTool.json = newModuleJson;
- newModuleJson.id = newTool._getNewId();
- newNode.set("id", newModuleJson.id);
- this.form.json.moduleList[newModuleJson.id] = newModuleJson;
- if (this.form.scriptDesigner) this.form.scriptDesigner.createModuleScript(newModuleJson);
- newTool.load(newModuleJson, newNode, node);
- return newTool;
- },
- "delete": function(e){
- var module = this;
- this.form.designer.shortcut = false;
- this.form.designer.confirm("warn", module.node, MWF.APPFD.LP.notice.deleteElementTitle, MWF.APPFD.LP.notice.deleteElement, 300, 120, function(){
- module.form.selected();
- module.form.designer.shortcut = true;
- module.destroy();
- this.close();
- }, function(){
- module.form.designer.shortcut = true;
- this.close();
- }, null);
- },
- styleBrush: function(){
- //@todo
- this.form.styleBrushContent = Object.clone(this.json.style);
- },
-
- _setNodeEvent: function(){
- if (this.form.moduleType!="subform"){
- if (!this.isSetEvents){
- this.node.addEvent("click", function(e){
- if (!this.form.noSelected) this.selected();
- this.form.noSelected = false;
- e.stopPropagation();
- }.bind(this));
- this.node.addEvent("mouseover", function(e){
- this.over();
- e.stopPropagation();
- }.bind(this));
- this.node.addEvent("mouseout", function(e){
- this.unOver();
- e.stopPropagation();
- }.bind(this));
- this.node.addEvent("copy", function(e){
- this.copyModule(e);
- });
- this._setOtherNodeEvent();
- this.isSetEvents = true;
- }
- }
- },
- copyModule: function(e){
- },
- _setOtherNodeEvent: function(){},
-
- over: function(){
- if (!this.form.moveModule) if (this.form.currentSelectedModule!=this){
- this.node.store("normalBorder", this.node.getBorder());
- this.node.setStyles({
- "border-width": "1px",
- "border-color": "#4e73ff"
- });
- }
- },
- unOver: function(){
- if (!this.form.moveModule) if (this.form.currentSelectedModule!=this){
- this.node.setStyles({
- "border-width": "1px",
- "border-color": "#333"
- });
- var border = this.node.retrieve("normalBorder");
- this.node.setStyles(border);
- }
- },
- _showActions: function(){
- if (this.actionArea){
- if (this.options.actions.length){
- this._setActionAreaPosition();
- this.actionArea.setStyle("display", "block");
- }
- }
- },
- _hideActions: function(){
- if (this.actionArea) this.actionArea.setStyle("display", "none");
- },
- selected: function(){
- if (this.form.currentSelectedModule){
- if (this.form.currentSelectedModule==this){
- return true;
- }else{
- this.form.currentSelectedModule.unSelected();
- }
- }
- if (this.form.propertyMultiTd){
- this.form.propertyMultiTd.hide();
- this.form.propertyMultiTd = null;
- }
- this.form.unSelectedMulti();
- this.node.setStyles({
- "border-width": "1px",
- "border-color": "red"
- });
- this._showActions();
- this.form.currentSelectedModule = this;
- if (this.treeNode){
- this.treeNode.selectNode();
- (new Fx.Scroll(this.form.designer.propertyDomScrollArea)).toElement(this.treeNode.node);
- // this.treeNode.node.scrollIntoView();
- }
- if (this.form.brushStyle){
- this.json.styles = Object.clone(this.form.brushStyle);
- this.setPropertiesOrStyles("styles");
- if (this.property) this.property.loadMaplist();
- }
- this.showProperty();
- },
- unSelected: function(){
- this.node.setStyles({
- "border-width": "1px",
- "border-color": "#333"
- });
- var border = this.node.retrieve("normalBorder");
- this.node.setStyles(border);
- this._hideActions();
- this.form.currentSelectedModule = null;
- this.hideProperty();
- },
-
- selectedMulti: function(){
- if (this.form.selectedModules.indexOf(this)==-1){
- this.form.selectedModules.push(this);
- this.node.setStyle("border-color", "red");
- }
- },
- unSelectedMulti: function(){
- if (this.form.selectedModules.indexOf(this)!=-1){
- this.form.selectedModules.erase(this);
- this.node.setStyle("border-color", "#333");
- }
- },
-
- showProperty: function(){
- if (!this.property){
- this.property = new MWF.xApplication.process.FormDesigner.Property(this, this.form.designer.propertyContentArea, this.form.designer, {
- "path": this.options.propertyPath,
- "onPostLoad": function(){
- this.property.show();
- }.bind(this)
- });
- this.property.load();
- }else{
- this.property.show();
- }
- },
- hideProperty: function(){
- if (this.property) this.property.hide();
- },
- create: function(data, e){
- this.json = data;
- this.json.id = this._getNewId();
- this._createMoveNode();
- this._setNodeMove(e);
- },
- _createMoveNode: function(){
- this.moveNode = new Element("div", {
- "MWFType": "label",
- "styles": this.css.moduleNodeMove,
- "text": "Text",
- "events": {
- "selectstart": function(){
- return false;
- }
- }
- }).inject(this.form.container);
- },
- _onEnterOther: function(dragging, inObj){
- },
- _onLeaveOther: function(dragging, inObj){
- },
- _onMoveEnter: function(dragging, inObj){
- var module = inObj.retrieve("module");
- if (module) module._dragIn(this);
- this._onEnterOther(dragging, inObj);
- },
- _setNodeMove: function(e){
- this._setMoveNodePosition(e);
- var droppables = [this.form.node].concat(this.form.moduleElementNodeList, this.form.moduleContainerNodeList, this.form.moduleComponentNodeList);
- var nodeDrag = new Drag.Move(this.moveNode, {
- "droppables": droppables,
- "onEnter": function(dragging, inObj){
- this._onMoveEnter(dragging, inObj);
- }.bind(this),
- "onLeave": function(dragging, inObj){
- var module = inObj.retrieve("module");
- if (module) module._dragOut(this);
- this._onLeaveOther(dragging, inObj);
- }.bind(this),
- "onDrag": function(e){
- this._nodeDrag(e, nodeDrag);
- }.bind(this),
- "onDrop": function(dragging, inObj){
- if (inObj){
- var module = inObj.retrieve("module");
- if (module) module._dragDrop(this);
- this._nodeDrop();
- }else{
- this._dragCancel(dragging);
- }
- }.bind(this),
- "onCancel": function(dragging){
- this._dragCancel(dragging);
- }.bind(this)
- });
- nodeDrag.start(e);
- this.form.moveModule = this;
- this.form.recordCurrentSelectedModule = this.form.currentSelectedModule;
- // var d = (new Date()).getTime();
- this.form.selected();
- //var d1 = (new Date()).getTime();
- //alert((d1-d))
- },
-
- _setMoveNodePosition: function(e){
- // var x = e.event.clientX+2;
- // var y = e.event.clientY+2;
- var x = e.page.x+2;
- var y = e.page.y+2;
- this.moveNode.positionTo(x, y);
- // this.moveNode.setStyles({
- // "top": y,
- // "left": x
- // });
- },
- _getCopyNode: function(module){
- if (!this.copyNode) this._createCopyNode();
- this.copyNode.setStyles(this.css.moduleNodeShow);
- this.copyNode.empty();
- if (module){
- try{
- var display = module.node.getStyle("display").toString().toLowerCase();
- this.copyNode.setStyle("display", display);
- if (display==="inline" || display==="inline-block"){
- var h = module.node.getSize().y-2;
- this.copyNode.setStyle("height", ""+h+"px");
- //this.copyNode.setStyle("display", "inline");
- }
- }catch(e){}
- }
- // this.copyNode.setStyle("display", "block");
- return this.copyNode;
- },
- _createCopyNode: function(){
- this.copyNode = this.moveNode.clone();
- this.copyNode.setStyles(this.css.moduleNodeShow);
- this.copyNode.addEvent("selectstart", function(){
- return false;
- });
- },
-
- _nodeDrop: function(){
- if (this.parentContainer){
- this._dragComplete();
- }else{
- this._dragCancel();
- }
- },
- _dragComplete: function(){
- this.setStyleTemplate();
- if (!this.node){
- this._createNode();
- }
- this._resetTreeNode();
- this.node.inject(this.copyNode, "before");
-
- this._initModule();
-
- var thisDisplay = this.node.retrieve("thisDisplay");
- if (thisDisplay){
- this.node.setStyle("display", thisDisplay);
- }
-
- if (this.copyNode) this.copyNode.destroy();
- if (this.moveNode) this.moveNode.destroy();
- this.moveNode = null;
- this.copyNode = null;
- this.nextModule = null;
- this.form.moveModule = null;
- this.form.json.moduleList[this.json.id] = this.json;
- if (this.form.scriptDesigner) this.form.scriptDesigner.createModuleScript(this.json);
- this.selected();
- },
- _resetTreeNode: function(){
- if (this.parentContainer){
- if (this.treeNode){
- if (this.treeNode.parentNode){
- var originalModule = this.treeNode.parentNode.module;
- // if (originalModule == this.parentContainer){
- // if (!this.nextModule) return true;
- // };
- }
- this.treeNode.destroy();
- }
-
- this._loadTreeNode(this.parentContainer);
-
- if (this.treeNode.parentNode){
- if (!this.treeNode.parentNode.options.expand) this.treeNode.parentNode.expandOrCollapse();
- }
-
- this._resetSubTreeNode(this.node)
- }
- },
- _resetSubTreeNode: function(node){
- var subNode = node.getFirst();
- while (subNode){
- var module = subNode.retrieve("module");
- if (module) module._resetTreeNode();
- this._resetSubTreeNode(subNode);
- subNode = subNode.getNext();
- }
- },
- _createNode: function(){
- this.node = this.moveNode.clone(true, true);
- this.node.clearStyles(false);
- this.node.setStyles(this.css.moduleNode);
- this.node.set("id", this.json.id);
- this.node.addEvent("selectstart", function(){
- return false;
- });
- },
- _dragCancel: function(){
- if (this.node){
- var thisDisplay = this.node.retrieve("thisDisplay");
- if (thisDisplay){
- this.node.setStyle("display", thisDisplay);
- }
- this.selected();
- }else{
- this.data = null;
- if (this.form.recordCurrentSelectedModule) this.form.recordCurrentSelectedModule.selected();
- }
- if (this.moveNode) this.moveNode.destroy();
- if (this.copyNode) this.copyNode.destroy();
- this.copyNode = null;
- this.moveNode = null;
- this.form.moveModule = null;
- },
- _nodeDrag: function(e, drag){
- if (this.inContainer){
- var p = this.inContainer.node.getCoordinates();
- var now = drag.mouse.now;
- var height = p.height*0.4;
- if (p.height>200) height = 100;
- var y = p.top.toFloat()+height.toFloat();
-
- if (this.inContainer == this.parentContainer){
- if (this.parentContainer!=this.form){
- if (now.x > p.left && now.x < p.right && now.y < y && now.y > p.top){
- this.parentContainer.node.setStyles(this.parentContainer.css.moduleNode);
- this.parentContainer.node.setStyles(this.parentContainer.json.styles);
-
- this.parentContainer._dragInLikeElement(this);
- }
- }
- }else{
- if (now.x > p.left && now.x < p.right && now.y < p.bottom && now.y > y){
- this.parentContainer.node.setStyles(this.parentContainer.css.moduleNode);
- this.parentContainer.node.setStyles(this.parentContainer.json.styles);
- this.inContainer._dragIn(this);
- }
- }
- }
-
- },
-
- setPropertiesOrStyles: function(name){
- if (name=="styles"){
- try{
- this.setCustomStyles();
- }catch(e){}
- }
- if (name=="properties"){
- try{
- this.node.setProperties(this.json.properties);
- }catch(e){}
- }
- },
- setCustomNodeStyles: function(node, styles){
- var border = node.getStyle("border");
- node.clearStyles();
- //node.setStyles(styles);
- node.setStyle("border", border);
- Object.each(styles, function(value, key){
- var reg = /^border\w*/ig;
- if (!key.test(reg)){
- node.setStyle(key, value);
- }
- }.bind(this));
- },
- setCustomStyles: function(){
- var border = this.node.getStyle("border");
- this.node.clearStyles();
- this.node.setStyles(this.css.moduleNode);
-
- if (this.initialStyles) this.node.setStyles(this.initialStyles);
- this.node.setStyle("border", border);
- if (this.json.styles) Object.each(this.json.styles, function(value, key){
- if ((value.indexOf("x_processplatform_assemble_surface")!=-1 || value.indexOf("x_portal_assemble_surface")!=-1)){
- var host1 = MWF.Actions.getHost("x_processplatform_assemble_surface");
- var host2 = MWF.Actions.getHost("x_portal_assemble_surface");
- if (value.indexOf("/x_processplatform_assemble_surface")!==-1){
- value = value.replace("/x_processplatform_assemble_surface", host1+"/x_processplatform_assemble_surface");
- }else if (value.indexOf("x_processplatform_assemble_surface")!==-1){
- value = value.replace("x_processplatform_assemble_surface", host1+"/x_processplatform_assemble_surface");
- }
- if (value.indexOf("/x_portal_assemble_surface")!==-1){
- value = value.replace("/x_portal_assemble_surface", host2+"/x_portal_assemble_surface");
- }else if (value.indexOf("x_portal_assemble_surface")!==-1){
- value = value.replace("x_portal_assemble_surface", host2+"/x_portal_assemble_surface");
- }
- }
- var reg = /^border\w*/ig;
- if (!key.test(reg)){
- if (key){
- if (key.toString().toLowerCase()==="display"){
- if (value.toString().toLowerCase()==="none"){
- this.node.setStyle("opacity", 0.3);
- }else{
- this.node.setStyle("opacity", 1);
- this.node.setStyle(key, value);
- }
- }else{
- this.node.setStyle(key, value);
- }
- }
- }
- //this.node.setStyle(key, value);
- }.bind(this));
- // Object.each(this.json.styles, function(value, key){
- // var reg = /^border\w*/ig;
- // if (!key.test(reg)){
- // if (key){
- // if (key.toString().toLowerCase()==="display"){
- // if (value.toString().toLowerCase()==="none"){
- // this.node.setStyle("opacity", 0.3);
- // }else{
- // this.node.setStyle("opacity", 1);
- // }
- // }else{
- // this.node.setStyle(key, value);
- // }
- // }
- // }
- // }.bind(this));
- },
-
- _setEditStyle: function(name, obj, oldValue){
- var title = "";
- var text = "";
- if (name==="name"){
- title = this.json.name || this.json.id;
- if (this.json.type==="Common"){
- text = text = this.json.tagName+"(Common)";
- }else{
- text = this.json.type.substr(this.json.type.lastIndexOf("$")+1, this.json.type.length);
- }
- this.treeNode.setText("<"+text+"> "+title);
- }
- if (name==="id"){
- title = this.json.name || this.json.id;
- if (!this.json.name){
- if (this.json.type==="Common"){
- text = text = this.json.tagName+"(Common)";
- }else{
- text = this.json.type.substr(this.json.type.lastIndexOf("$")+1, this.json.type.length);
- }
- this.treeNode.setText("<"+text+"> "+this.json.id);
- }
- this.treeNode.setTitle(this.json.id);
- this.node.set("id", this.json.id);
- }
-
- this._setEditStyle_custom(name, obj, oldValue);
- },
- reloadMaplist: function(){
- if (this.property) Object.each(this.property.maplists, function(map, name){ map.reload(this.json[name]);}.bind(this));
- },
- _setEditStyle_custom: function(name, obj, oldValue){
- },
- getHtml: function(){
- var copy = this.node.clone(true, true);
- copy.clearStyles(true);
- this.form._clearNoId(copy);
- var html = copy.outerHTML;
- copy.destroy();
- return html;
- },
- _getSubModuleJson: function(node, moduleJsons){
- var subNode = node.getFirst();
- while (subNode){
- var module = subNode.retrieve("module");
- if (module) {
- moduleJsons[module.json.id] = Object.clone(module.json);
- }
- this._getSubModuleJson(subNode, moduleJsons);
- subNode = subNode.getNext();
- }
- },
- getJson: function(){
- var json = Object.clone(this.json);
- var o = {};
- o[json.id] = json;
- this._getSubModuleJson(this.node, o);
- return o;
- }
-
-
- // dragInElement: function(dragging, inObj, module){
- // this.containerNode = module.containerNode;
- //
- // // var border = this.containerNode.retrieve("thisborder", null);
- // // if (!border){
- // var top = this.containerNode.getStyle("border-top");
- // var left = this.containerNode.getStyle("border-left");
- // var bottom = this.containerNode.getStyle("border-bottom");
- // var right = this.containerNode.getStyle("border-right");
- //
- // this.containerNode.store("thisborder", {"top": top, "left": left, "bottom": bottom, "right": right});
- // // }
- // this.containerNode.setStyles({"border": "1px solid #ffa200"});
- //
- // if (!this.copyNode) this.createCopyNode(dragging, inObj);
- // this.copyNode.inject(inObj, "before");
- // },
- // dragInContainer: function(dragging, inObj){
- // // var border = inObj.retrieve("thisborder", null);
- // // if (!border){
- // var top = inObj.getStyle("border-top");
- // var left = inObj.getStyle("border-left");
- // var bottom = inObj.getStyle("border-bottom");
- // var right = inObj.getStyle("border-right");
- // inObj.store("thisborder", {"top": top, "left": left, "bottom": bottom, "right": right});
- // // }
- //
- // inObj.setStyles({"border": "1px solid #ffa200"});
- //
- // if (!this.copyNode) this.createCopyNode(dragging, inObj);
- //
- // this.copyNode.inject(inObj);
- //
- // this.containerNode = inObj;
- // },
- //
- //
- // dragOutElement: function(dragging, inObj){
- // var border = this.containerNode.retrieve("thisborder");
- // if (border) {
- // this.containerNode.setStyles({
- // "border-top": border.top,
- // "border-left": border.left,
- // "border-bottom": border.bottom,
- // "border-right": border.right
- // });
- // }
- // this.containerNode = null;
- // },
- // dragOutContainer: function(dragging, inObj){
- // var border = inObj.retrieve("thisborder");
- // if (border) {
- // inObj.setStyles({
- // "border-top": border.top,
- // "border-left": border.left,
- // "border-bottom": border.bottom,
- // "border-right": border.right
- // });
- // // inObj.setStyles({"border": border});
- // }
- // if (!this.node){
- // if (this.copyNode){
- // this.copyNode.destroy();
- // this.copyNode = null;
- // }
- // }
- // this.containerNode = null;
- // },
- //
- //
- //
- //
- // dragCancel: function(dragging){
- // if (this.node){
- // var thisDisplay = this.node.retrieve("thisDisplay");
- // if (thisDisplay){
- // this.node.setStyle("display", thisDisplay);
- // }
- // this.selected();
- // }else{
- // this.data = null;
- // if (this.form.recordCurrentSelectedModule) this.form.recordCurrentSelectedModule.selected();
- // }
- // if (dragging) dragging.destroy();
- // if (this.copyNode) this.copyNode.destroy();
- // this.copyNode = null;
- // this.moveNode = null;
- // this.form.moveModule = null;
- // }
- });
|