| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- MWF.xDesktop.requireApp("process.Xform", "$Input", null, false);
- MWF.xApplication.process.Xform.Select = MWF.APPSelect = new Class({
- Implements: [Events],
- Extends: MWF.APP$Input,
- iconStyle: "selectIcon",
- initialize: function(node, json, form, options){
- this.node = $(node);
- this.node.store("module", this);
- this.json = json;
- this.form = form;
- this.field = true;
- },
- _loadNode: function(){
- if (this.readonly){
- this._loadNodeRead();
- }else{
- this._loadNodeEdit();
- }
- },
- _loadNodeRead: function(){
- this.node.empty();
- var optionItems = this.getOptions();
- var value = this.getValue();
- if (value){
- if (typeOf(value)!=="array") value = [value];
- var texts = [];
- optionItems.each(function(item){
- var tmps = item.split("|");
- var t = tmps[0];
- var v = tmps[1] || t;
- if (v){
- if (value.indexOf(v)!=-1){
- texts.push(t);
- }
- }
- });
- this.node.set("text", texts.join(", "));
- }
- },
- _loadDomEvents: function(){
- Object.each(this.json.events, function(e, key){
- if (e.code){
- if (this.options.moduleEvents.indexOf(key)===-1){
- this.node.addEvent(key, function(event){
- return this.form.Macro.fire(e.code, this, event);
- }.bind(this));
- }
- }
- }.bind(this));
- },
- _loadEvents: function(){
- Object.each(this.json.events, function(e, key){
- if (e.code){
- if (this.options.moduleEvents.indexOf(key)!=-1){
- this.addEvent(key, function(event){
- return this.form.Macro.fire(e.code, this, event);
- }.bind(this));
- }else{
- this.node.addEvent(key, function(event){
- return this.form.Macro.fire(e.code, this, event);
- }.bind(this));
- }
- }
- }.bind(this));
- },
- addModuleEvent: function(key, fun){
- if (this.options.moduleEvents.indexOf(key)!==-1){
- this.addEvent(key, function(event){
- return (fun) ? fun(this, event) : null;
- }.bind(this));
- }else{
- this.node.addEvent(key, function(event){
- return (fun) ? fun(this, event) : null;
- }.bind(this));
- }
- },
- _loadStyles: function(){
- if (this.areaNode){
- if (this.json.styles) if (this.areaNode) this.areaNode.setStyles(this.json.styles);
- if (this.json.inputStyles) this.node.setStyles(this.json.inputStyles);
- }else{
- if (this.json.styles) this.node.setStyles(this.json.styles);
- }
- },
- _loadNodeEdit: function(){
- this.node.empty();
- var select = new Element("select");
- select.set(this.json.properties);
- select.inject(this.node);
- //this.node.destroy();
- this.areaNode = this.node;
- this.node = select;
- this.node.set({
- "id": this.json.id,
- "MWFType": this.json.type,
- "styles": {
- "margin-right": "12px"
- }
- });
-
- this.setOptions();
- this.node.addEvent("change", function(){
- this.validationMode();
- if (this.validation()) this._setBusinessData(this.getInputData("change"));
- }.bind(this));
- },
- resetOption: function(){
- this.node.empty();
- this.setOptions();
- this.fireEvent("resetOption")
- },
- getOptions: function(){
- if (this.json.itemType == "values"){
- return this.json.itemValues;
- }else{
- return this.form.Macro.exec(this.json.itemScript.code, this);
- }
- return [];
- },
- setOptions: function(){
- var optionItems = this.getOptions();
- if (!optionItems) optionItems = [];
- if (o2.typeOf(optionItems)==="array"){
- optionItems.each(function(item){
- var tmps = item.split("|");
- var text = tmps[0];
- var value = tmps[1] || text;
- var option = new Element("option", {
- "value": value,
- "text": text
- }).inject(this.node);
- }.bind(this));
- this.fireEvent("setOptions", [optionItems])
- }
- },
- addOption: function(text, value){
- var option = new Element("option", {
- "value": value || text,
- "text": text
- }).inject(this.node);
- this.fireEvent("addOption", [text, value])
- },
- _setValue: function(value){
- if (!this.readonly) {
- this._setBusinessData(value);
- for (var i=0; i<this.node.options.length; i++){
- var option = this.node.options[i];
- if (option.value==value){
- option.selected = true;
- // break;
- }else{
- option.selected = false;
- }
- }
- }
- //this.node.set("value", value);
- },
- getTextData: function(){
- var ops = this.node.getElements("option");
- var value = [];
- var text = [];
- ops.each(function(op){
- if (op.selected){
- var v = op.get("value");
- var t = op.get("text");
- value.push(v || "");
- text.push(t || v || "");
- }
- });
- if (!value.length) value = [""];
- if (!text.length) text = [""];
- return {"value": value, "text": text};
- },
- getInputData: function(){
- var ops = this.node.getElements("option");
- var value = [];
- ops.each(function(op){
- if (op.selected){
- var v = op.get("value");
- if (v) value.push(v);
- }
- });
- if (!value.length) return null;
- return (value.length==1) ? value[0] : value;
- },
- resetData: function(){
- this.setData(this.getValue());
- },
- setData: function(data){
- this._setBusinessData(data);
- var ops = this.node.getElements("option");
-
- ops.each(function(op){
- if (typeOf(data)=="array"){
- if (data.indexOf(op.get("value"))!=-1){
- op.set("selected", true);
- }else{
- op.set("selected", false);
- }
- }else{
- if (data == op.get("value")){
- op.set("selected", true);
- }else{
- op.set("selected", false);
- }
- }
- });
- this.fireEvent("setData", [data]);
- }
-
- });
|