我有一个表单面板..我试图添加一个图像...图像块出现但图像没有被加载..图像块正常工作正常..这是我的代码,我是从一个html文件调用..有人可以帮助我吗?
Ext.application({
name : 'hello',
launch : function() {
Ext.create('Ext.form.Panel', {
title : 'Create Catalog',
defaultType : 'textfield',
items : [ {
fieldLabel : 'Name',
name : 'name',
anchor : '100%',
allowBlank : false
},{
xtype : 'imagefield',
fieldLabel : 'Image Here',
src : 'i1.jpg',
width : 50,
height : 25
}
],
renderTo : Ext.getBody()
});
}
});
答案 0 :(得分:0)
它现在有效... xtype应该是图像。
{
xtype: 'image',
fieldLabel: 'Image Here',
src: 'i2.png',
width: 50,
height: 50
}