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:GridViewDataColumnDataMemberBinding="{Binding FriendlyName}"IsReadOnly="True"><telerik:GridViewDataColumn.ToolTipTemplate><DataTemplate><TextBlockText="{Binding Description}"/></DataTemplate></telerik:GridViewDataColumn.ToolTipTemplate></telerik:GridViewDataColumn>