views:

25

answers:

1

Is there any way to show the tooltip in Datagrid for more than 30 seconds?

example, here is my code e.Item.Cells(7).Tooltip = e.Item.Cells(6).Text

on mousehover the tooltip will be displayed only 6 or 7 seconds, is there any way to increase the time for the tooltip?

+1  A: 

No.

These tooltips are a browser behavior that you have no control over.

Instead, you can use a custom Javascript tooltip, such as this one.

SLaks