I'm new to Extjs.
I have an index.html file who contains an Ext.OnReady() function. A Viewport containing several items in different regions is created. Each item in the Viewport has the 'html' attribute, holding an iframe tag.
For example, one of the regions :
region: 'center',
bodyBorder:false,
id: '...',
html: '<iframe SRC="./bla/bla" id="..." name="..."></iframe>'
Everything works fine, but I want to replace the iframes in something alternative. Is there another way to get a server response and load it into the Viewport's regions?
I've tried to replace the 'html' attribute with an 'url' attribute, but it didn't work.
region: 'center',
bodyBorder:false,
id: '...',
url: './bla/bla'