Extjs Gird 支持中文拼音排序实现代码
更新时间:2013年04月15日 11:18:26 作者:
本文为大家详细介绍下Extjs Gird 支持中文拼音排序以及修复汉字排序异常的Bug、localeCompare比较汉字字符串,Firefox与IE均支持,感兴趣的朋友可以参考下
复制代码 代码如下:
<script type="text/javascript">
Ext.data.Store.prototype.applySort=function(){//重载applySort
if(this.sortInfo && !this.remoteSort){
var s = this.sortInfo, f=s.field;
var st=this.fields.get(f).sortType;
var fn=function(r1,r2){
var v1=st(r1.data[f]),v2=st(r2.data[f]);
//添加:修复汉字排序异常的Bug
if(typeof(v1)=="string"){//若为字符串
return v1.localeCompare(v2);//则localeCompare比较汉字字符串,Firefox与IE均支持
}//添加结束
return v1>v2 ? 1 : (v1<v2 ? -1 : 0);
};
this.data.sort(s.direction,fn);
if(this.snapshot && this.snapshot!=this.data){
this.snapshot.sort(s.direction,fn);
}
}
};
</script>
相关文章
JavaScript的Ext JS框架中的GridPanel组件使用指南
GridPanel和TreePnal功能类似,都是Ext JS中的表格便携利器,相比之下GridPanel还要更强大并且更复杂一些,下面我们就来整理一下JavaScript的Ext JS框架中的GridPanel组件使用指南2016-05-05常用Extjs工具:Extjs.util.Format使用方法
常用Extjs工具:Extjs.util.Format使用方法,需要的朋友可以参考下2012-03-03
最新评论