I need to use custom tooltips for my column headers, and the two methods I have tried, neither has worked.
Method 1:
}
However, the tooltip still just shows the column caption, without the added text.
Method 2 was a client side attempt:
igtbl_getElementById(grid.Bands[0].Columns[iCol].Id).title = sTooltip;
Again, all that shows up is the original column caption. What am I missing? Thanks for the help.
Just in case someone else searches on this topic looking for the same help, this is how I get tool tips on column headers...
In the Initialize Grid event:
gridname.Columns.FromKey("keyname").Header.Title = "ToolTipText!"
No response required. I got it.
In leiu of this, how can I disable tooltips altogether so that I can implement my own?