Hello everyone,
I am trying to figure out how to navigate to a different panel in the app while staying in the same window. I have a link (external link) setup using listeners but it opens the link in a new tab. I just want to open up a different specified view/panel through clicking on the image.
Code:
items: [
{
xtype: 'container',
docked: 'top',
ui: '',
width: 318,
items: [
{
xtype : 'image',
src: 'images/capture.jpg',
height: 232,
ui: '',
width: 317,
listeners:{
tap:function(){
window.open ("http://www.parishworld.net/con_TopStory.cfm?contentUUID=329FF0B0-2219-2361-ACF52FC3DE98F261|201208");
}
}
}
]
}
]