мой вопрос: как открыть внешнюю HTML-страницу в SenchaTouch, когда я нажимаю на ItemDisclosure?
Это мой код:
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-страницу.
Спасибо за вашу помощь