add方法将menuPoint添加到商店的末尾,如何将其添加到开头呢? 已经浏览了商店文档中的所有方法,但是找不到将元素放到商店开头的方法。
http://docs.sencha.com/touch/2-0/#!/api/Ext.data.Store
var store = Ext.getStore('AdultMenuStore');//adultmenulist.getStore();
for(var i=0; i < adultObj.children.length; i++){
var child = adultObj.children[i];
var menuPoint = Ext.create('Sencha.model.MenuPoint',
{
id: child.childId,
name: child.firstName,
icon_url: 'http://kidsparent.no/images/adultMenu/bkids-home-profile.png', xtype: 'childmenu'
});
store.add(menuPoint);
}
答案 0 :(得分:1)
只需使用insert
方法:
insert( Number index, Ext.data.Model[] records )