I'm trying to make a tooltip show up on a RadGridView. I'm grouping the data by the client number. Probably the issus is that I don't understand how the tooltip will work in the RadGridView when grouping. I thought that, for example, if the user passes the mouse over a cell for the client's first name, then it would show "First Name". Am I wrong about that? Cutting out all but the relevant XAML, here's what I've got:
<telerik:RadGridView Grid.Row="1" VerticalAlignment="Stretch" HorizontalAlignment="Left" DataMember="ClientNumber" ItemsSource="{Binding}" AutoGenerateColumns="False" IsReadOnly="True" ShowColumnHeaders="False" ShowGroupPanel="False" IsFilteringAllowed="False" Name="grdSearchResults" AutoExpandGroups="True" FontSize="16" > <telerik:RadGridView.Columns> <telerik:GridViewDataColumn UniqueName="ClientNumber" ToolTip="Client Number" /> <telerik:GridViewDataColumn UniqueName="LastName" ToolTip="Last Name" /> <telerik:GridViewDataColumn UniqueName="FirstNames" ToolTip="First Name"/> <telerik:GridViewDataColumn UniqueName="CaseNumber" ToolTip="Case Number"/> <telerik:GridViewDataColumn UniqueName="DateOfBirth" DataFormatString="{}{0:d}" ToolTip="DOB" /> <telerik:GridViewDataColumn UniqueName="InterviewDate" DataFormatString="{}{0:d}" ToolTip="Interview Date" /> </telerik:RadGridView.Columns> <!-- other stuff --> </telerik:RadGridView>