标签: extjs sencha-touch-2
我有一个list,其项目动态变化。使用按钮,我以这种方式添加项目:
list
myList.insert(index, { //Component });
它运作正常。现在,我想删除index项。我试过这个:
index
myList.remove(index);
但它什么也没做。我怎样才能做到这一点?我坚持说,我不能用商店来做。
答案 0 :(得分:0)
您可以使用以下命令删除列表中的记录:
myList.removeAt(index);
Sencha docs for this