如何在sencha touch 2的标签面板中添加一个网址到标签页

时间:2013-03-16 23:33:32

标签: sencha-touch-2 tabpanel

我需要我的标签面板的标签才能转到网址。我怎么能这样做?我的意思是我希望我在该标签上点击一个网址(这里的网址是pdf)。

请检查此链接https://docs.google.com/file/d/0BzddXRxUeN1jOE9tTVBmSGpHQzg/edit?usp=sharing以查看所需的效果

1 个答案:

答案 0 :(得分:1)

它很简单..你只需要在该面板的html部分创建一个iframe ...希望你得到它,......像这样的东西

items:[{
    xtype: 'panel',
    styleHtmlContent : true,
    html: '<div><iframe style="width:100%;height:100%;" src="http://www.sencha.com/products/touch">Your device does not support iframes.</iframe></div>',
}]