码迷,mamicode.com
首页 > Web开发 > 详细

ExtJS中store.findExact

时间:2017-04-18 12:52:45      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:function   tor   grid   store   ...   get   class   dex   each   

 1  var ds = myGrid.apf_ds;
 2  var store = myGrid.getStore();
 3 
 4 forEach(data, function (item) {
 5     if (store.findExact("code", item["code"]) < 0) {
 6         
 7             var record = ds.addRecord();
 8             record.set("code", item.code);
 9             ...
10         }
11     }
12 });

 

ExtJS中store.findExact

标签:function   tor   grid   store   ...   get   class   dex   each   

原文地址:http://www.cnblogs.com/wuln/p/6726997.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!