This question is locked. New answers and comments are not allowed.
Hi. I need to assign tooltip to gridView Column. But the Short Description should be display first, after 5 sec, the full description will then bedisplayed.
How can I make it? Please let me know the modification on the DataTemplate. Thanks!
<grid:RadGridView> <grid:RadGridView.Columns> <grid:GridViewDataColumn Header="Description" ShowDistinctFilters="False" DataMemberBinding="{Binding ShortDescription}" ToolTipTemplate="{StaticResource DescriptionToolTipDataTemplate}" /> </grid:RadGridView.Columns> </grid:RadGridView> (DataTemplates.xaml) <DataTemplate x:Key="DescriptionToolTipDataTemplate"> <TextBlock Text="{Binding Description}" /> </DataTemplate>