extjs7

Events order between DOM event and sencha event

一曲冷凌霜 提交于 2021-02-11 14:35:43
问题 I've a dataview, written with extjs 7.1 modern tookit, with a template with an anchor tag and a select event: https://fiddle.sencha.com/#view/editor&fiddle/34bd Ext.create({ renderTo: document.body, xtype: 'list', itemTpl: '<div class="contact"><a onclick="event.preventDefault();console.log(\'link\');" href="{firstName}">{firstName}</a> <b>{lastName}</b></div>', store: { data: [{ firstName: 'Peter', lastName: 'Venkman' }, { firstName: 'Raymond', lastName: 'Stantz' }, { firstName: 'Egon',