Tooltip
Hi,
I'm try to expand the below to display the data from a different grid on mouseover except its not working.
Any ideas.?
What I have is as follows:-
grid.onCellMouseOver = function(event, column, row){
if(column == 1) {
this.setCellTooltip(function(column,row){
return this.getCellText(40, row);} );
}
if(column == 2) {
this.setCellTooltip(function(column,row){
return this.getCellText(41, row);} );
}
else{ this.setCellTooltip('') }
}
thanks
I'm try to expand the below to display the data from a different grid on mouseover except its not working.
Any ideas.?
What I have is as follows:-
grid.onCellMouseOver = function(event, column, row){
if(column == 1) {
this.setCellTooltip(function(column,row){
return this.getCellText(40, row);} );
}
if(column == 2) {
this.setCellTooltip(function(column,row){
return this.getCellText(41, row);} );
}
else{ this.setCellTooltip('') }
}
thanks
Colin
April 27,