我需要以编程方式从视图中转到back
。我使用过navigationView.pop();
但没有任何反应。该视图不会以编程方式back
进行。
我的代码;
success: function (response) {
var tx = response.responseText;
setTimeout(function () {
Ext.Msg.hide();
}, 2000);
setTimeout(function () {
Ext.Msg.alert('Ok', 'got it right');
}, 3000);
navigationView.pop();
我怎样才能完成这项工作?
答案 0 :(得分:1)
您需要在pop()
组件上调用Ext.navigation.View
函数。
这样做,
// Assuming the id for navigationview - navigateId
.....
.....
setTimeout(function () {
Ext.Msg.alert('Ok', 'got it right');
}, 3000);
Ext.getCmp('navigateId').pop();