提交 af7a0067 编写于 作者: U unknown

修复复合选人可能存在的问题

上级 ce7211fe
...@@ -649,9 +649,10 @@ MWF.xApplication.Selector.MultipleSelector = new Class({ ...@@ -649,9 +649,10 @@ MWF.xApplication.Selector.MultipleSelector = new Class({
}, },
getValueByType : function( values, type ){ getValueByType : function( values, type ){
var result = []; var result = [];
values = typeOf( values == "array" ) ? values : [values]; values = typeOf(values) == "array" ? values : [values];
var types = typeOf( type == "array" ) ? type : [type]; var types = typeOf(type)== "array" ? type : [type];
values.each( function( data ){ values.each( function( data ){
if( !data )return;
if( typeOf( data ) == "string" ){ if( typeOf( data ) == "string" ){
var dn = data; var dn = data;
}else{ }else{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册