I'm using SlickGrid, and right now, if I have really long column headers, SlickGrid cuts the header short with ellipses (...).
My question is: Is there's a way to view the whole text on mouseover?
By the way, I was able to do it for long cell entries by registering this cool plugin https://github.com/mleibman/SlickGrid/blob/master/plugins/slick.autotooltips.js:
mygrid.registerPlugin(new Slick.AutoTooltips());
Here's a jsFiddle using that plugin: http://jsfiddle.net/crystality/h5ZLP/1/
Note that if you mouseover a cell with a long value, then you can view the full entry, but it doesn't do that for long column headers.
I'm thinking that I can edit that plugin to allow for that behavior. Any other suggestions? Thanks!