我无法弄清楚如何检索商店中的给定数据项(id-number)以将其发送到侦听器中的“setActiveItem”方法: 所以我有一个商店模型:
Ext.regModel('PictureItem', {
fields: ['id', 'titel', 'url']
});
var pictureItems = new Ext.data.Store({
model: 'PictureItem',
data: [
{id:1, titel:'page 1', url:'http://placekitten.com/1024/768'},
{id:2, titel:'page 2', url:'http://placekitten.com/1024/768'},
{id:3, titel:'page 3', url:'http://placekitten.com/1024/768'},
]
});
这是我的名为“leftList”的menuList:
var leftList = new Ext.List({
dock: 'left',
id:'list1',
width: 135,
overlay: true,
itemTpl: '{titel}',
singleSelect: true,
defaults: {
cls: 'pic'
},
store: pictureItems,
listeners:{
selectionchange: function (model, records) {
if (records[0]) {
Ext.getCmp('karte').setActiveItem(!!!Here the number of the selected Item
or respondend "id" in the data store!!!);
}
}
}
});
和旋转木马....
var carousel = new Ext.Carousel({
id: 'karte',
defaults: {
cls: 'card'
},
items: [{
scroll: 'vertical',
title: 'Tab 1',
html: '<img class="orientation" alt="" src="img_winkel/titel_v.jpg">'
},
如果我打电话
Ext.getCmp('karte').setActiveItem(2);
它适用于被叫卡 - 但如何从列表/存储菜单中的所选项目的ID中获取数字? 顺便说一下:意思是什么:
if(records [0]){ 为什么[0]?
答案 0 :(得分:0)
我找到了自己的答案 - 这很容易:
Ext.getCmp('karte').setActiveItem(records[0].get('id'), {type: 'slide', direction: 'left'});
获取记录条目的秘诀是“.get()”:
records[0].get('arrayfield')
所以现在我可以轻松地改变旋转木马中的activeItem ......