I'm having trouble loading image data into a draggable window using EXT JS.
The link to a process that streams the image file is in the code.
I've tried using
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
}
});
and then
plotWin.show();
But this does not seem to work.