Я обработал список с помощью SENCHA. Теперь я хочу перейти на другой экран / загрузить другой экран после нажатия на элемент в LIST.
var templist = new Ext.List( {
title:"xmli",
itemTpl : '{ename}',
floating: true,
indexBar: true,
width: 350,
height: 370,
centered: true,
store:xmlStore,
modal: true,
onItemDisclosure: {
scope: 'test',
handler: function(record, btn, index) {
// I need to a load different page here how ?.
// ChangePage();
}
},
hideOnMaskTap: false
}).show();
Пожалуйста, помогите мне, как мы можем добиться этого с помощью SENCHA.
Спасибо, Шьям