提交 8fa2e7bd 编写于 作者: U unknown

修复门户页面通过anonymous访问会报错的问题

上级 000498fb
......@@ -1762,18 +1762,18 @@ MWF.xApplication.Selector.Person.Item = new Class({
this.outItem();
}.bind(this),
"click": function(){
this.clickItem();
this.clickItem( true );
}.bind(this)
});
},
clickItem: function(){
clickItem: function( manual ){
if ( layout.mobile && this.selector.options.count.toInt()===1){
this.selectedSingle();
this.selectedSingle( manual );
}else{
if (this.isSelected){
this.unSelected();
this.unSelected( manual );
}else{
this.selected();
this.selected( manual );
}
}
},
......@@ -1810,7 +1810,7 @@ MWF.xApplication.Selector.Person.Item = new Class({
}
}
},
selectedSingle: function(){
selectedSingle: function( manual ){
if (!this.isSelected){
if (this.selector.currentItem) this.selector.currentItem.unSelectedSingle();
this.getData(function(){
......@@ -1827,11 +1827,12 @@ MWF.xApplication.Selector.Person.Item = new Class({
this.actionNode.setStyles( this.selector.css.selectorItemActionNode_single_selected );
}
this.selector.fireEvent("selectItem",[this])
this.selector.fireEvent("selectItem",[this]);
if( manual )this.selector.fireEvent("valid", [this.selector, this]);
}.bind(this));
}else {
this.unSelectedSingle();
this.unSelectedSingle( manual );
}
},
getData: function(callback){
......@@ -1850,9 +1851,10 @@ MWF.xApplication.Selector.Person.Item = new Class({
if( ( this.selector.options.count.toInt() === 1 || this.selector.options.noSelectedContainer ) && this.selector.css.selectorItemActionNode_single ){
this.actionNode.setStyles( this.selector.css.selectorItemActionNode_single );
}
this.selector.fireEvent("unselectItem",[this])
this.selector.fireEvent("unselectItem",[this]);
if( manual )this.selector.fireEvent("valid", [this.selector, this]);
},
selected: function(){
selected: function( manual ){
var count = this.selector.options.maxCount || this.selector.options.count;
count = count.toInt();
if (!count) count = 0;
......@@ -1880,12 +1882,13 @@ MWF.xApplication.Selector.Person.Item = new Class({
// this.category.checkSelectAll();
// }
this.selector.fireEvent("selectItem",[this])
this.selector.fireEvent("selectItem",[this]);
if( manual )this.selector.fireEvent("valid", [this.selector, this]);
}else{
MWF.xDesktop.notice("error", {x: "right", y:"top"}, "最多可选择"+count+"个选项", this.node);
}
},
unSelected: function(){
unSelected: function( manual ){
this.isSelected = false;
if( this.node ){
this.node.setStyles(this.selector.css.selectorItem);
......@@ -1949,7 +1952,8 @@ MWF.xApplication.Selector.Person.Item = new Class({
this.selectedItem.destroy();
this.selectedItem = null;
}
this.selector.fireEvent("unselectItem",[this])
this.selector.fireEvent("unselectItem",[this]);
if( manual )this.selector.fireEvent("valid", [this.selector, this]);
},
postLoad : function(){},
getParentCategoryByLevel : function( level ){
......@@ -2000,16 +2004,18 @@ MWF.xApplication.Selector.Person.ItemSelected = new Class({
getData: function(callback){
if (callback) callback();
},
clickItem: function(){
clickItem: function( manual ){
if (this.items.length){
this.items.each(function(item){
item.unSelected();
item.unSelected( manual );
});
if( manual )this.selector.fireEvent("valid", [this.selector, this])
}else{
//this.item.selectedItem = null;
//this.item.isSelected = false;
this.destroy();
this.selector.selectedItems.erase(this);
if( manual )this.selector.fireEvent("valid", [this.selector, this])
}
},
//overItem: function(){
......
......@@ -1775,6 +1775,10 @@ if( MWF.xApplication.process.Xform && MWF.xApplication.process.Xform.Form ){
}.bind(this));
}
defaultOpt["onValid"] = function ( selector ) {
this.validation();
}.bind(this);
if( this.form.json.selectorStyle ){
defaultOpt = Object.merge( Object.clone(this.form.json.selectorStyle), defaultOpt );
if( this.form.json.selectorStyle.style )defaultOpt.style = this.form.json.selectorStyle.style;
......
......@@ -479,11 +479,13 @@ o2.addReady(function () {
if (layout.anonymous) {
_loadProgressBar(true);
_loadApp({
user: "anonymous",
session: {
user: {
name: "anonymous",
roleList: []
data : {
user: "anonymous",
session: {
user: {
name: "anonymous",
roleList: []
}
}
}
});
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册