如果我需要为列表中的行提供备用背景颜色,我被困在 sencha 触摸列表中。另一个疑问是如何在 sencha touch 中自定义列表,因为我需要在列表行中添加文本字段、按钮、图像。我用 html 尝试过并且能够做到,有没有办法直接将 sencha touch 对象项添加到列表中。请帮助我解决这个问题。
问问题
2064 次
1 回答
1
您可以使用cls : 'customCls'
一个可选的额外 CSS 类,该类将添加到该组件的 Element(默认为 '')。这对于使用标准 CSS 规则向组件或其任何子组件添加自定义样式很有用。也许你想看看这个
编辑:
Ext.regModel('Contact', {
fields: ['firstName', 'lastName']
});
var store = new Ext.data.JsonStore({
model : 'Contact',
sorters: 'lastName',
getGroupString : function(record) {
return record.get('lastName')[0];
},
data: [
{firstName: 'Tommy', lastName: 'Maintz'},
{firstName: 'Rob', lastName: 'Dougan'},
{firstName: 'Ed', lastName: 'Spencer'},
{firstName: 'Jamie', lastName: 'Avins'},
{firstName: 'Aaron', lastName: 'Conran'},
{firstName: 'Dave', lastName: 'Kaneda'},
{firstName: 'Michael', lastName: 'Mullany'},
{firstName: 'Abraham', lastName: 'Elias'},
{firstName: 'Jay', lastName: 'Robinson'}
]
});
Ext.onReady(function() {
var list = new Ext.List({
fullscreen: true,
itemTpl : '{firstName} {lastName}',
grouped : true,
indexBar: true,
store: store,
listeners: { // here you can add itemtap event and retrieve index number!
itemtap:function(item,index, e){
console.log(index);
//so, now that you have index , you can access specific item
console.log(this.store.data.items[index]);
}
},
});
list.show();
console.log(list.getStore().data.items[0]);
// here you are accessing list store and then store data and then store item with index 0
});
于 2011-10-14T08:51:02.797 回答