Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
755
Header tooltip
posted

I think you forgot to add a tooltip property to the column header.

I have tried to do the following:

 

column.Header.Text = string.Format("<span title=\"{0}\">{1}</span>", toolTip, column.Header.Text);

This works. I get a tooltip when I hover over the grid header. This solution has two disadvantages:

  1. Sorting does not work anymore; and
  2. the unnecessary overhead of a HTML SPAN tag 

Can you add a tooltip property? In the meantime do you have a better solution?
Roland