vote up 0 vote down star
1

I have data bound DataGridView in a desktop app with columns that have their ToolTipText property set, yet no tool tip is displayed when I hover over grid view (cells or cell headers).

The ShowCellToolTips property of the grid view is 'true', and I have verified using break points that it is not changed programatically before I mouse over.

I have tried creating a CellToolTipTextNeeded event handler to see what the tool tip text was, but the event handler is never called.

Is there anything I have missed?

Thanks, Rob

flag

4 Answers

vote up 0 vote down

I don't know if this tip is a solution to your specific problem, but do you use SP1 of VS2008 ? This Service Pack resolves many different issues, as I have discovered.

link|flag
@WunderWuzzi. No we don't have SP1 installed. I'll talk to the technical lead on the project to see if that's something we can try. I'll update the issue then. Thanks so much. – Robert Gowland Jan 2 '09 at 14:19
vote up 0 vote down

It appears from your question that you set the tooltip text of the columns. Columns tooltip text only appears when floating over the headers. To show tooltip text on the cells you have to hookup the CellToolTipTextNeeded event and set the value of e.ToolTipText in the event args

link|flag
Thanks for the reply, but as stated in the question: a) the tooltip text is not showing on the headers either b) the CellToolTipTextNeeded event handler is not firing – Robert Gowland Jan 8 '09 at 19:27
vote up 1 vote down check

We ended up using a ToolTip widget and the CellMouseEnter, CellMouseLeave events to show it appropriately. Not optimal, but it works around the odd behaviour we were experiencing.

link|flag
vote up 0 vote down

You can also use Jquery for accessing and changing gridview cell, cell headers with jQuerys hover function. Just use

$('tbody tr').hover(function(){  //or 'tbody td'
   //now you can change and show your title or custom title
}, function() {
   //change back to old style
});

For detailed intruduction, look at this tutorial

http://net.tutsplus.com/tutorials/javascript-ajax/using-jquery-to-manipulate-and-filter-data/

link|flag
Thanks, fyasar, but it's a desktop app (see question), so Jquery isn't going to be of much help to me. – Robert Gowland Jun 11 at 12:55
Ops, sory i didn't read correctly. Thanks for your notification. – fyasar Jun 12 at 8:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.