我有如下的ExtJS Carousel,但我不能让它工作......
title: 'Pictures',
items: [{
xtype: 'carousel',
listeners: {
initialize: 'onCarouselInitialize'
}
}]
在ViewController中:
onCarouselInitialize: function(component, eOpts) {
var url = 'resources/images/sample.jpg'; // valid URL
component.add({
xtype: 'image',
src: url
});
}
...什么都没有发生!我找不到动态填充旋转木马的例子,请帮帮我!!!!!!!!!!!!!!!!!!!!!!!!!)
解决:我缺少定义容器面板的高度。