【发布时间】:2014-06-18 13:07:30
【问题描述】:
我正在尝试显示一个简单的 html 而不是在屏幕上显示。
这是我的代码:
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
}
]
};
我正在显示上栏和标题,但 html 部分是空白的。 IOS 和 Android 显示良好,但在 Windows Phone 8 中则不然。
有什么想法吗,谢谢
【问题讨论】:
标签: windows-phone-8 sencha-touch sencha-touch-2