| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- MWF.xDesktop.requireApp("process.Xform", "$Module", null, false);
- MWF.xDesktop.requireApp("process.Xform", "ViewSelector", null, false);
- /** @class ViewSelector 查询视图选择组件。
- * @example
- * //可以在脚本中获取该组件
- * //方法1:
- * var statementSelector = this.form.get("fieldId"); //获取组件
- * //方法2
- * var statementSelector = this.target; //在组件本身的脚本中获取
- * @extends MWF.xApplication.process.Xform.ViewSelector
- * @o2category FormComponents
- * @o2range {Process|CMS}
- * @hideconstructor
- */
- MWF.xApplication.process.Xform.StatementSelector = MWF.APPStatementSelector = new Class({
- Implements: [Events],
- Extends: MWF.xApplication.process.Xform.ViewSelector,
- doResult: function(data){
- if (this.json.result === "script"){
- this.selectedData = data;
- return (this.json.selectedScript.code) ? this.form.Macro.exec(this.json.selectedScript.code, this) : "";
- }else{
- Object.each(this.json.selectedSetValues, function(v, k){
- var value = "";
- data.each(function(d, idx){
- // Object.each(d, function(dv, dk){
- // if (dk===v) value = (value) ? (value+", "+dv) : dv;
- // }.bind(this));
- var pathList = v.split(".");
- for( var i=0; i<pathList.length; i++ ){
- var p = pathList[i];
- if( (/(^[1-9]\d*$)/.test(p)) )p = p.toInt();
- if( d[ p ] ){
- d = d[ p ];
- }else{
- d = "";
- break;
- }
- }
- if( typeOf(d) === "array" || typeOf(d) === "object" ) {
- d = JSON.stringify(d);
- }
- value = (value) ? (value+", "+d) : d;
- }.bind(this));
- var field = this.form.all[k];
- if (field){
- field.setData(value);
- if (value){
- if (field.descriptionNode) field.descriptionNode.setStyle("display", "none");
- }else{
- if (field.descriptionNode) field.descriptionNode.setStyle("display", "block");
- }
- }
- }.bind(this));
- }
- },
- selectView: function(callback){
- var viewData = this.json.queryStatement;
- if (viewData){
- var filter = null;
- if (this.json.filterList && this.json.filterList.length){
- filter = [];
- this.json.filterList.each(function(entry){
- entry.value = this.form.Macro.exec(entry.code.code, this);
- //delete entry.code;
- filter.push(entry);
- }.bind(this));
- }
- var viewJson = {
- "application": viewData.appName,
- "statementName": viewData.name,
- "statementId": viewData.id,
- "isTitle": this.json.isTitle || "yes",
- "select": this.json.select || "single",
- "titleStyles": this.json.titleStyles,
- "itemStyles": this.json.itemStyles,
- "isExpand": this.json.isExpand || "no",
- "showActionbar" : this.json.actionbar === "show",
- "filter": filter,
- "defaultSelectedScript" : this.json.defaultSelectedScript ? this.json.defaultSelectedScript.code : null,
- "selectedAbleScript" : this.json.selectedAbleScript ? this.json.selectedAbleScript.code : null
- };
- var options = {};
- var width = options.width || "850";
- var height = options.height || "700";
- if (layout.mobile){
- var size = document.body.getSize();
- width = size.x;
- height = size.y;
- options.style = "viewmobile";
- }
- width = width.toInt();
- height = height.toInt();
- var size = this.form.app.content.getSize();
- var x = (size.x-width)/2;
- var y = (size.y-height)/2;
- if (x<0) x = 0;
- if (y<0) y = 0;
- if (layout.mobile){
- x = 20;
- y = 0;
- }
- var _self = this;
- MWF.require("MWF.xDesktop.Dialog", function(){
- var dlg = new MWF.xDesktop.Dialog({
- "title": this.json.title || "select view",
- "style": options.style || "view",
- "top": y,
- "left": x-20,
- "fromTop":y,
- "fromLeft": x-20,
- "width": width,
- "height": height,
- "html": "",
- "maskNode": layout.mobile?$(document.body) : this.form.app.content,
- "container": layout.mobile?$(document.body) : this.form.app.content,
- "buttonList": [
- {
- "text": MWF.LP.process.button.ok,
- "action": function(){
- //if (callback) callback(_self.view.selectedItems);
- if (callback) callback(_self.view.getData());
- this.close();
- }
- },
- {
- "text": MWF.LP.process.button.cancel,
- "action": function(){this.close();}
- }
- ],
- "onPostShow": function(){
- if(layout.mobile){
- dlg.node.setStyle("z-index",200);
- }
- MWF.xDesktop.requireApp("query.Query", "Statement", function(){
- this.view = new MWF.xApplication.query.Query.Statement(dlg.content, viewJson, {"style": "select"}, this.form.app, this.form.Macro );
- }.bind(this));
- }.bind(this)
- });
- dlg.show();
- if (layout.mobile){
- var backAction = dlg.node.getElement(".MWF_dialod_Action_back");
- var okAction = dlg.node.getElement(".MWF_dialod_Action_ok");
- if (backAction) backAction.addEvent("click", function(e){
- dlg.close();
- }.bind(this));
- if (okAction) okAction.addEvent("click", function(e){
- //if (callback) callback(this.view.selectedItems);
- if (callback) callback(this.view.getData());
- dlg.close();
- }.bind(this));
- }
- // MWF.xDesktop.requireApp("process.Xform", "widget.View", function(){
- // this.view = new MWF.xApplication.process.Xform.widget.View(dlg.content.getFirst(), viewJson, {"style": "select"});
- // }.bind(this));
- // MWF.xDesktop.requireApp("query.Query", "Viewer", function(){
- // this.view = new MWF.xApplication.query.Query.Viewer(dlg.content, viewJson, {"style": "select"});
- // }.bind(this));
- }.bind(this));
- }
- }
-
- });
|