如何使用项目模板将Sencha 触摸按钮添加到Sencha 触摸列表?
我知道,我可以这样做:
itemTpl: '{quantity} {productName} <input type="button" value="Delete" />',
但是这个按钮看起来很奇怪和丑陋,我想让按钮与Sencha Button相同的用户界面。
决定是否单击了行或按钮正在使用此代码:
config: {
control: {
'list[itemId="listItemId"]': {
itemtap: 'yourFunction'
}
}
},
yourFunction: function(list, index, target, record, evt) {
var type = evt.event.target.type || '';
if(type == 'button') {
console.warn('delete');
}
}