在 Sencha Touch 2 中,我在 Controller 中有这段代码。主要目的是使用商店中的数据填充视图。目前我使用setRecord
没有成功。
您能否通过代码示例指出我正确的方向?谢谢
// Load data in the model after a user is successfully authenticated
populateViewsAfterLogIn: function (){
var me = this;
var storeEvents2 = Ext.getStore('Events2');
storeEvents2.load();
storeEvents2.sync();
var myDashBoardView = me.getNavigViewTimetable();
myDashBoardView.setRecord(storeEvents2);
},