PDA

View Full Version : Does Ext can show a popup tooltip just like google map when I click a grid cell?



craneleeon
23 Aug 2007, 5:25 PM
I am looking for a popup tooltip just like google map when I click a grid cell.
Does Ext can do that?
If it's not, is there a way to implement this to Ext grid?

fangzhouxing
23 Aug 2007, 8:42 PM
try define grid column render like this:


function renderName(value,p,record){
p.attr = 'ext:qtip="'+record.data['descrip']+'"';
return value;
}

craneleeon
23 Aug 2007, 8:50 PM
I want is a popup box seems like the quicktip which can hold html and will not disappear when mouse move out the cell, this box just show when I click the cell.