清除Titanium中的视图内容

时间:2013-10-29 09:20:27

标签: android titanium appcelerator titanium-mobile

我有一个包含tableview的视图,其中包含从web加载的数据,即各个地方和另一个topview,我有一个数据选择对话框,可以设置半径为km。因此,在更改值时,我想清除tableview中的数据并根据用户选择的半径加载新数据

1 个答案:

答案 0 :(得分:1)

您应该能够创建一个空数组来清除数据,并将其设置为新的数据数组。类似的东西:

tableview.data = []; // Clears the array
tableview.data = [newArray]; // Sets the new data