2

我在 Sencha Touch 中有一个正常的列表。现在我需要将该列表中的单个项目标记为“披露”项目。

功能应该是这样的:

onItemDisclosure: function(record) {
    if (record.data.type != "link") return false; //not a disclosure
    return true;  //disclosure item
}

这有可能实现吗?

4

1 回答 1

2

试试这个:

new Ext.List({
    onItemDisclosure:true,
    store:'Events',
    itemTpl:'{date} {name}',
    listeners:{
        afterrender:function(cmp){
            this.store.each(function(record,index,itemsCount){
                if(record.data.type != "link"){
                    Ext.select('.x-list-disclosure',cmp.getNode(index)).remove();
                }
            });                         
        },
        itemtap:function(list,index,item){
            var record = this.store.getAt(index);
            if(record.data.type == "link"){
                // do action
            }               
        }
    }
})
于 2011-10-10T00:41:45.827 回答