I am having troubles with the ScreenTip on a gridview.
I can get the hovered text to show up in the StatusBar, but I do not get a popup over the hovered cell. Not sure what I am doing wrong?
GridDataCellElement cell = e.Item as GridDataCellElement;
e.Delay = 0;
RadOffice2007ScreenTipElement screenTip = new RadOffice2007ScreenTipElement();
if (cell.ColumnIndex == 1)
{
radLabelElement8.Text = cell.Text; // StatusBar
screenTip.CaptionVisible = false;
screenTip.Text = cell.Text.ToString();
}