Ext4工具类使用
程序员文章站
2022-06-12 22:20:55
...
在Ext4中的各种类型提供的静态方法工具类, 比如查询 String 中是否包含另外一个 String
查询 API 看到Ext.String 类,
A collection of useful static methods to deal with strings.
其方法描述为:
endsWith( s, start, [ignoreCase] )
使用:
if(Ext.String.endsWith(combo.getValue(),"***年")){ alert("OK"); } //返回 true
Ext日期的格式化
function formatDate(value){ var val = null; if(window.addEventListener){ val = Ext.util.Format.date(value,'Y-m-d'); }else{ if(Ext.isDate(value)){ var valDate = Ext.Date.format(value, "Y-m-d"); val = valDate.toString(); }else{ val = value; } } return val; }
得到了日期, 但是传到后台格式不好转化, 进行转换
//将时间转化为 2011-08-20 00:00:00 格式 //解决Ext4的formPanel通过grid的store查询问题 2012.2.22 jzr function dateFormat(value){ if(null != value){ return Ext.Date.format(new Date(value),'Y-m-d H:i:s'); }else{ return null; } }
今天,使用for居然失败了,
var ids = bigsuitidxmap[record.data.bigSuitNo];
for(index in ids),得到的index不对, 想到使用Ext 自带的each
var ids = bigsuitidxmap[record.data.bigSuitNo]; Ext.Array.each(ids, function(rdx, index, countriesItSelf) { airportGrid.getSelectionModel().deselect(rdx,true,false); });
成功取得。
FF
可以通过 console.log(XXX) 察看结果
上一篇: Ext4 表格分组和组标题的设置
下一篇: 常喝这种茶当心胃越来越受伤 这茶很伤胃