123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- MWF.xDesktop.requireApp("process.ProcessManager", "Explorer", null, false);
- MWF.xApplication.process.ProcessManager.ViewExplorer = new Class({
- Extends: MWF.xApplication.process.ProcessManager.Explorer,
- Implements: [Options, Events],
- options: {
- "create": MWF.APPPM.LP.view.create,
- "search": MWF.APPPM.LP.view.search,
- "searchText": MWF.APPPM.LP.view.searchText,
- "noElement": MWF.APPPM.LP.view.noNoticeText
- },
- _createElement: function(e){
- var _self = this;
- var options = {
- "onQueryLoad": function(){
- this.actions = _self.app.restActions;
- this.application = _self.app.options.application;
- this.explorer = _self;
- }
- };
- this.app.desktop.openApplication(e, "process.ViewDesigner", options);
- },
- _loadItemDataList: function(callback){
- this.app.restActions.listView(this.app.options.application.id,callback);
- },
- _getItemObject: function(item){
- return new MWF.xApplication.process.ProcessManager.ViewExplorer.View(this, item)
- },
- setTooltip: function(){
- this.options.tooltip = {
- "create": MWF.APPPM.LP.view.create,
- "search": MWF.APPPM.LP.view.search,
- "searchText": MWF.APPPM.LP.view.searchText,
- "noElement": MWF.APPPM.LP.view.noNoticeText
- };
- },
- deleteItems: function(){
- while (this.deleteMarkItems.length){
- var item = this.deleteMarkItems.shift();
- if (this.deleteMarkItems.length){
- item.deleteView();
- }else{
- item.deleteView(function(){
- // this.reloadItems();
- this.hideDeleteAction();
- }.bind(this));
- }
- }
- }
- });
- MWF.xApplication.process.ProcessManager.ViewExplorer.View = new Class({
- Extends: MWF.xApplication.process.ProcessManager.Explorer.Item,
- _open: function(e){
- var _self = this;
- var options = {
- "onQueryLoad": function(){
- this.actions = _self.explorer.actions;
- this.category = _self;
- this.options.id = _self.data.id;
- this.application = _self.explorer.app.options.application;
- this.explorer = _self.explorer;
- }
- };
- this.explorer.app.desktop.openApplication(e, "process.ViewDesigner", options);
- //layout.desktop.getFormDesignerStyle(function(){
- // var _self = this;
- // var options = {
- // "style": layout.desktop.formDesignerStyle,
- // "onQueryLoad": function(){
- // this.actions = _self.explorer.actions;
- // this.category = _self;
- // this.options.id = _self.data.id;
- // this.application = _self.explorer.app.options.application;
- // }
- // };
- // this.explorer.app.desktop.openApplication(e, "process.FormDesigner", options);
- //}.bind(this));
- },
- _getIcon: function(){
- //var x = (Math.random()*33).toInt();
- //return "process_icon_"+x+".png";
- return "view.png"
- },
- _getLnkPar: function(){
- return {
- "icon": this.explorer.path+this.explorer.options.style+"/viewIcon/lnk.png",
- "title": this.data.name,
- "par": "process.ViewDesigner#{\"appId\": \"query.ViewDesigner"+this.data.id+"\", \"id\": \""+this.data.id+"\", \"applicationId\": \""+this.explorer.app.options.application.id+"\"}"
- };
- },
- // deleteItem: function(e){
- // var _self = this;
- // this.explorer.app.confirm("info", e, this.explorer.app.lp.form.deleteFormTitle, this.explorer.app.lp.form.deleteForm, 320, 110, function(){
- // _self.deleteForm();
- // this.close();
- // },function(){
- // this.close();
- // });
- // },
- deleteView: function(callback){
- this.explorer.app.restActions.deleteView(this.data.id, function(){
- this.node.destroy();
- if (callback) callback();
- }.bind(this));
- }
- });
|