This question is locked. New answers and comments are not allowed.
I have a grid view data column. If the column is NOT readonly, my tooltip shows. If it is readonly, it does not show. Is there a way to gget it to display for a readonly column? Here is my xaml:
<telerik:
GridViewDataColumn
DataMemberBinding
=
"{Binding FriendlyName}"
IsReadOnly="True">
<
telerik:GridViewDataColumn.ToolTipTemplate
>
<
DataTemplate
>
<
TextBlock
Text
=
"{Binding Description}"
/>
</
DataTemplate
>
</
telerik:GridViewDataColumn.ToolTipTemplate
>
</telerik:
GridViewDataColumn
>