1
は私がのためにクリックし、リストのためのpatientId
を取得したい私は.on
機能でHTMLDivElement
煎茶タッチHTMLDivElementで
wplStore.load();
var itemTpl = new Ext.XTemplate('<div class="wpllist">'+
'<div><div class="wpl_txt_line1">{patientInfo} </div> <div class="wpl_txt_line1_right" style="float:right"></div></div>'+
'<div style="clear:both"><div id="patientId" class="wpl_txt_line2_left">{patientId}</div> <div class="wpl_txt_line2_right">{checkInTime}</div></div>'+
'</div>');
this.wplPatList = new Ext.List({
id: 'wPatList',
store: wplStore,
itemTpl: itemTpl,
height: 370,
indexBar: false
});
this.wplPatList.on('itemtap', function (view, item, event) {
alert(event.innerHTML + 'event');
controller.showPatHisPanel(item);
});
から特定のdiv id
結果を取得するのに役立ちます。これを得る方法?私を助けてください。イベントで
は、オブジェクトHTMLDivElement
ように私は私がPAT-3407
ことを得ることができますどのようにこのことから、結果に
<div class="x-list-item-body"><div class="wpllist"><div><div class="wpl_txt_line1">Dinesh (Male, 9) </div> <div class="wpl_txt_line1_right" style="float:right"> </div></div><div style="clear:both"><div id="patientId" class="wpl_txt_line2_left">PAT-3407</div> <div class="wpl_txt_line2_right">Wed Sep 14 2011 06:07:00 GMT+0530 (IST)</div></div></div></div>
を取得していますevent.innerHTML
アラートを来ていますか?私を助けてください。
はあなたに感謝!私は結果を得ました – Shakthi
いいです!この答えを解決策としてマークしてください。乾杯 – Luis