我无法使用EXT JS将图像数据加载到可拖动的窗口中。
流式传输图像文件的流程链接在代码中。
我尝试过使用
var plotWin = Ext.create('Ext.Window', {
title: 'Plot',
width: 600,
height: 400,
x: 10,
y: 200,
loader : {
url : "http://209.105.242.30/custom/webimg",
autoLoad : true,
renderer : 'data'
},
plain: true,
headerPosition: 'top',
layout: 'fit',
items: {
border: false
}
});
然后
plotWin.show();
但这似乎不起作用。
答案 0 :(得分:3)
看起来这个url是跨域的,这意味着它无法通过ajax加载。如果它是一个图像,为什么不只是嵌入它?
var plotWin = Ext.create('Ext.Window', {
title: 'Plot',
width: 600,
height: 400,
x: 10,
y: 200,
plain: true,
headerPosition: 'top',
layout: 'fit',
items: {
xtype: 'image',
src: "http://209.105.242.30/custom/webimg"
}
});