Sencha Touch:单个项目的披露



我在Sencha Touch中有一个正常列表。现在我需要将列表中的一个项目标记为"disclosure"项目。

功能应该是这样的:

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

这可能实现吗?

试试这个:

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
            }               
        }
    }
})

相关内容

  • 没有找到相关文章

最新更新