I'm trying to display a simple html and not show it on screen.
This is my code:
nextView = {
xtype: 'panel',
layout: {
type: 'vbox',
pack: 'center'
},
style: 'background-color:#FFFFFF',
scrollable: 'vertical',
items: [
{
docked: 'top',
xtype: 'globaltoolbar',
height: 55
},
{
xtype: 'normaltoolbar',
items: [
{
xtype: 'backbutton',
}
],
title: 'Title'
},
{
xtype: 'panel',
styleHtmlContent: true,
scrollable: 'vertical',
html: 'This is the html of this panel.',
flex: 1
}
]
};
I am showing the upper bar and the title, but the html section is blank. IOS and Android shows well, but in Windows Phone 8 not.
Any ideas?, thanks