Example or code for tooltip per cell on Beta 2?
Anyone have an Example or code for tooltip per cell on Beta 2.0?
In the old version I just did this......
In the old version I just did this......
/*************Add ToolTip*********/
var myColsTips = new Array();
for (var col=0; col < (myColumns.length); col++) {
obj.getTemplate("column",col).setAttribute("title", function(){return this.getProperty("column/text") + ": \'" + this.getProperty("item/tooltip") + "\'"});
obj.defineProperty("data/tooltip", function(i, col){return myData[i][col];});
}
obj.setProperty("column/tooltip", function(i){return myColsTips[i]});
/********************************/
Anthony
October 3,