Sencha touch 2 - 如何使Ext.Img动态的src

时间:2012-03-02 09:20:38

标签: sencha-touch-2

如何制作 Ext.Img动态的src。

Ext.define('App.view.Welcomescreen', {

    extend: 'Ext.Carousel',
    xtype: 'welcomescreen',

    config: {      
        items: [
            {
                xtype: 'image',
                src: 'http://src.sencha.io/screen.width/http://www.google.co.in/images/srpr/logo3w.png',
            },
            {
                xtype: 'image',
                src: 'http://src.sencha.io/screen.width/http://www.google.co.in/images/srpr/logo3w.png',
            },
            {
                xtype: 'image',
                src: 'http://src.sencha.io/screen.width/http://www.google.co.in/images/srpr/logo3w.png',
            }
        ]
    }
});

我想使用store将值赋给“src”。

1 个答案:

答案 0 :(得分:0)

也许最简单的解决方案是将Ext.dataview.DataView

一起使用
config: {
 itemTpl = "<img src={source}>",
 inline: true
}

如果绑定到商店,它会根据需要自行刷新,遗憾的是,如果不进行其他修改,您将失去旋转木马效果。