我創建的列表使用煎茶觸摸2.在煎茶Ext.List組件Click事件
var aroundList = Ext.create('Ext.List', {
itemCls : 'my-dataview-item',
id : 'aroundMeList',
itemTpl : '<div><img style="padding:1px; border-style:solid; border-width:1px; border-color:{trustColor}" src="' + localStorage.httpServerPrefix + '{imageURI}"/><span id="name">{fullname}</span><span id="time">{time}</span><p id="msg">{text}<span id="count"> {replyCount} </span></p><p id="dist"> < '+localStorage.radius+''+localStorage.unit+' '+' </p></div>',
store : aroundStore,
listeners : {
select : {
fn : this.onMessageClickedInAround,
scope : this
}
}
});
我越來越喜歡這個輸出(不完全是,但是,這樣的事情)
當用戶單擊列表中的第一行或第一項時,我調用onMessageClickedInAround方法(此方法用於顯示來自該用戶的消息),您可以看到上面的代碼。
現在我有,當用戶單擊列表中的任何圖片的要求,我需要證明相應的個人資料頁(即一個用戶可以看到其他人通過點擊圖像中的列表配置),是有什麼辦法可以做到這一點?
謝謝@Ehtesham ..你的回答是完美的,這是我需要的。 – Viswa
senchaEvent.event.target.nodeName返回「IMG」 – Viswa