Sencha Touch on Item Disclosure

时间:2011-12-16 08:38:11

标签: javascript html sencha-touch

我的问题是当我点击ItemDisclosure时如何在SenchaTouch中打开外部HTML页面?

这是我的代码:

if(subListContainerID){
    var that = this;
    onItemDisclosure = function(){
        that.extApplication.views.viewport.setActiveItem(
            SenchaTantorController.extApplication.views[subListContainerID], {
            type: 'slide',
            direction: 'left' 
        });
    }
}else{
    onItemDisclosure = function(){
        alert('!no item to diclose');
    }
}

else 中,它应该打开外部html页面。

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

为什么不能使用javascript代码

 window.location.href = 'yourURL/index.html';

在onItemDisclosure函数()中。它将在外部浏览器中打开指定的文件。如果你想在应用程序中使用它,你可以使用子浏览器插件进行phonegap。