Label: The value in this field is too big!
//自己定义一个校验器
this.feeTx.validator = this.validatePriceFun;
//校验器函数
validatePriceFun : function(value)
{
if(value>validateTotalValue){
return 'The value in this field is too big!';
}
else{
return true;
}
}
 照理说:校验之后显示的信息应该是
The value in this field is too big!
但真实显示的是    
Label: The value in this field is too big!    
为什么会多个Label: 求解!