flexviewer popupconfig泡沫信息窗口关于图层字段是date类型的显示

在flexviewer框架里面的Popupinfo信息窗口绑定图层字段类型是date的,总是显示不对,是一串字符串数字,不是所想要的效果,解决方案如下:

在文件CustomPopUpRendererSkin.mxml

function commitProperties()

 formattedAttributes;//绑定的数据源

//add by gwli
if(formattedAttributes.Time){
var date:Date = new Date(formattedAttributes.Time);
var dateFormatter:DateFormatter = new DateFormatter();
dateFormatter.formatString= "YYYY/MM/DD";
var str_start:String =dateFormatter.format(date); 
//featureSet.attributes[i].Time = str_start;
formattedAttributes.Time = str_start;
}


      备注:

      GIS技术交流QQ群:432512093

      GIS论坛:http://arcgis.c.ev123.com/vip_arcgis.html


你可能感兴趣的:(Flex,解决方案,flexview)