我正在使用框架 Sencha Touch 2,现在我在创建 List 组件时遇到问题,因为我为此创建了一个 XTemplate,但我需要在列表的每个元素中插入一个按钮组件
{
xtype: 'list',
id: 'list_product',
emptyText: '<div class="list-empty-text">No hay coincidencias</div>',
store: 'Product',
itemTpl: Ext.create('Ext.XTemplate',
'<h3>{name}</h3>' +
'[{xtype:"button"}]'//Here i tried insert a button
),
items: [
{
xtype: 'toolbar',
docked: 'top',
items: [
{xtype: 'spacer'},
{
xtype: 'searchfield',
placeHolder: 'Buscar...'
},
{xtype: 'spacer'}
]
}
]
}
我阅读了文档,但没有看到示例或一些代码帮助。