我有以下代码。
var list = this.getNavigation();
if (list.itemsCount > 0) {
list.removeAll(true, true);
}
list.setData(filtered);
列表 = xtype:列表。所以想法是接下来我有菜单,有时我需要重建它。如您所见,我没有使用商店,因为我需要过滤数组并进行设置。当我调用 removeAll 我得到错误
Uncaught TypeError: Cannot call method 'getScroller' of undefined
而且我找不到清理它的方法...