maryus_001
12 Apr 2012, 4:13 AM
Hi,
I am trying to add a custom quickTip to grid items.
Here's how i added a normal quick tip:
renderer : function(value, metadata, record) {
myToolTipText = "<b>Placemark</b>";
myToolTipText = myToolTipText + "<br/>Name: "+ record.get('name');
metadata.tdAttr = 'data-qtip="' + myToolTipText + '"';
return value;
}
This code went inside a column and work the way it should.
I have a custom panel that i would like to add inside that quicktip. My question is: can that be done, and regardeles of whether that is possible, what would be the best aproach to obtain that effect?
I am trying to add a custom quickTip to grid items.
Here's how i added a normal quick tip:
renderer : function(value, metadata, record) {
myToolTipText = "<b>Placemark</b>";
myToolTipText = myToolTipText + "<br/>Name: "+ record.get('name');
metadata.tdAttr = 'data-qtip="' + myToolTipText + '"';
return value;
}
This code went inside a column and work the way it should.
I have a custom panel that i would like to add inside that quicktip. My question is: can that be done, and regardeles of whether that is possible, what would be the best aproach to obtain that effect?