Am a newbie to Sencha-Touch 2 and am working on a project where i have to access a website within my application but the website is on a different domain from the application.
I thought of loading it in an iframe but the content in the iframe do not displaying anything from the external url in the iframe container.
An example is as below.
new Ext.TabPanel({
fullscreen: true,
type: 'dark',
sortable: true,
items: [{
title: 'Tab 1',
html: '1',
cls: 'card1'
}, {
title: 'Tab 2',
html: '2',
cls: 'card2'
}, {
title: 'The Latest',
html: '<iframe src =\"http://www.google.com\"></iframe>',
id: 'feedTab',
iconCls: 'team',
scroll : false
}]
});