使用 Sencha Touch 2 时,我想将itemtap
事件动态地触发到列表中的一个项目 ( Ext.List
),我是这样做的:
Ext.getCmp(LIST_ID).container.fireEvent('itemtap', null, null, ITEM_INDEX,
new Event('itemtap'));
运行这条线,itemtap
事件ITEM_INDEX
在LIST_ID
. 现在,当将我的框架更新到 sencha touch 2.1 时,这种方式不再起作用了......
他们是动态触发此事件的另一种方式吗?