I have contents of a cell (column) as URL. Is it possible that it shows it like a hyperlink and when clicked; it opens the URL in a browser?
Step in right direction. How can I show a different text to hyperlink in that cell. Assuming I have another column in data table representing the hyperlink.
I have slight guess that I can bind to another field but can not workout the path. I have highlighted it below.
<TextBlock Margin="{TemplateBinding Padding}" VerticalAlignment="Center" HorizontalAlignment="Center"> <Hyperlink Name="hpLinkOrderID" Click="hpLinkOrderID_Click" NavigateUri="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=Value}"> <TextBlock Text="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type igDP:Field}}, Path=Cells["ProductLink"].Value}" HorizontalAlignment="Center"/> </Hyperlink></TextBlock>