0

我正在使用 sencha touch 制作 form.fieldset。在我的模型中,我有一个图像字段,我该如何显示模型的当前图像?我的 form.fieldset 看起来像:

/**
 * This is used by the NestedList example to allow editing of an item in the Store
 */
Ext.define('ParkingSencha.view.EditorPanel', {
    extend: 'Ext.form.Panel',
    requires: ['Ext.form.FieldSet'],
    id: 'editorPanel',
    config: {
        modal: true,
        hideOnMaskTap: false,
        centered: true,
        width: 500,
        scrollable: false,
        items: [{
            xtype: 'fieldset',
            items: [
            {
                xtype: 'textfield',
                name: 'keyword',
                label: 'Mots clés'
            },
            {
                xtype: 'textfield',
                name: 'title',
                label: 'Titre'
            },
            {
                xtype: 'textfield',
                name: 'image',
                label: 'image'
            }
            ]
          }]
        }]
    }
});
4

2 回答 2

0

要在a 中使用/加载,您需要使用组件,而不是.imageformfieldimagetextfield

像这样做,

....
{
  xtype: 'image',
  src: 'http://www.sencha.com/assets/images/sencha-avatar-64x64.png',
  flex: 1
},
....
于 2012-05-11T14:09:29.367 回答
0

还有另一种解决方案,使用标签并在 html 标签内设置图像 ....:) 像这样

{
xtype:'label',
html:'<img src="path of image ">'
}

或者boomslang ans非常正确,我建议您使用它..

于 2013-04-24T12:22:09.317 回答