| 1 |
- MWF.xApplication.Selector=MWF.xApplication.Selector||{};MWF.xApplication.Template=MWF.xApplication.Template||{};MWF.xApplication.Template.Selector=MWF.xApplication.Template.Selector||{};MWF.xDesktop.requireApp("Selector","Person",null,false);MWF.xApplication.Template.Selector.Custom=new Class({Extends:MWF.xApplication.Selector.Person,options:{style:"default",count:0,title:"选择列表",selectableItems:[],values:[],expand:false},initialize:function(e,t){this.setOptions(t);this.path="/x_component_Selector/$Selector/";this.cssPath="/x_component_Selector/$Selector/"+this.options.style+"/css.wcss";this._loadCss(true);this.container=$(e);this.selectedItems=[];this.items=[]},loadSelectItems:function(e){this.options.selectableItems.each(function(e){var t=typeOf(e)=="string"?e:e.name;var i=typeOf(e)=="string"?e:e.id;var n=this._newItem({name:t,id:i},this,this.itemAreaNode);this.items.push(n)}.bind(this))},_scrollEvent:function(e){return true},_getChildrenItemIds:function(e){return e.viewList||[]},_listItemByKey:function(e,t,i){return false},_getItem:function(t,e,i,n){this.action.getProcess(function(e){if(t)t.apply(this,[e])}.bind(this),e,typeOf(i)==="string"?i:i.id,n)},_newItemSelected:function(e,t,i){return new MWF.xApplication.Template.Selector.Custom.ItemSelected(e,t,i)},_listItemByPinyin:function(e,t,i){return false},_newItem:function(e,t,i,n){return new MWF.xApplication.Template.Selector.Custom.Item(e,t,i,n)}});MWF.xApplication.Template.Selector.Custom.Item=new Class({Extends:MWF.xApplication.Selector.Person.Item,_getShowName:function(){return this.data.name},_setIcon:function(){this.iconNode.setStyle("background-image","url("+"/x_component_Organization/Selector/$Selector/default/icon/processicon.png)")},loadSubItem:function(){return false},checkSelectedSingle:function(){var e=this.selector.options.values.filter(function(e,t){if(typeOf(e)==="object")return this.data.id===e.id||this.data.name===e.name;if(typeOf(e)==="string")return this.data.id===e||this.data.name===e;return false}.bind(this));if(e.length){this.selectedSingle()}},checkSelected:function(){var e=this.selector.selectedItems.filter(function(e,t){return e.data.id===this.data.id||e.data.name===this.data.name}.bind(this));if(e.length){e[0].addItem(this);this.selectedItem=e[0];this.setSelected()}}});MWF.xApplication.Template.Selector.Custom.ItemSelected=new Class({Extends:MWF.xApplication.Selector.Person.ItemSelected,_getShowName:function(){return this.data.name},_setIcon:function(){this.iconNode.setStyle("background-image","url("+"/x_component_Organization/Selector/$Selector/default/icon/processicon.png)")},check:function(){if(this.selector.items.length){var e=this.selector.items.filter(function(e,t){return e.data.id===this.data.id||e.data.name===this.data.name}.bind(this));this.items=e;if(e.length){e.each(function(e){e.selectedItem=this;e.setSelected()}.bind(this))}}}});
|