0
폼 패널이 있습니다. 이미지를 추가하려고하는데 ... 이미지 블록이 나타나지만 이미지가로드되지 않습니다. 이미지 블록이 잘 작동합니다. .. 여기 html 파일에서 호출하는 코드입니다 .. 누군가 이걸로 나를 도울 수 있습니까 ??ExtJS 4 폼 패널에서 이미지를로드 할 수 없습니다.
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()
});
}
});
http://www.sscce.org – Luigi