我想删除按钮上的所选数据,哪些数据有
hasCheck=true
在钛金属加速器中。
答案 0 :(得分:0)
file.xml(view):
<ListView id="list" onItemclick="onListViewItemclick" >
<Templates>
</Templates>
<ListSection id="section"/>
</ListView>
file.js(controller):
function onListViewItemclick(e) {
var item = $.section.getItemAt(e.itemIndex);
if (item.hasCheck) {
$.section.deleteItemsAt(e.itemIndex, $.section.items.length);
}
}