ToolTips
There are two ways to assign tooltips to cells in RadGridView, namely setting the ToolTipText property of a CellElement in the CellFormatting event handler, or as in most of the RadControls by using the ToolTipTextNeeded event.
Setting tooltips in the CellFormatting event handler
The code snippet below demonstrates how you can assign a tooltip to a data cell.
Figure 1: Using the formatting event to set the tooltips.
Setting tooltips in the ToolTipTextNeeded event
The code snippet below demonstrates how you can use ToolTipTextNeeded event handler to set ToolTipText for the given CellElement.
Figure 2: Using the ToolTipTextNeeded event.
The ToolTipTextNeeded event has higher priority and overrides the tooltips set in CellFormatting event handler.