Hello
Based on this below the Download Document Column will show text "Dowload"
I want to keep an image there and when clicked as per the NavigateUri the link will work.
How do i show the user a download.png per say in that column,.
<ig:XamGrid.Columns> <ig:UnboundColumn Key="Download Document"> <ig:UnboundColumn.ItemTemplate> <DataTemplate> <HyperlinkButton Content="Download" NavigateUri="{Binding RowData.DocLink}" TargetName="_blank"></HyperlinkButton> </DataTemplate> </ig:UnboundColumn.ItemTemplate> </ig:UnboundColumn> <ig:HyperlinkColumn Key="DocLink" HeaderText="Document Link" Width="130" IsSummable="False" TargetName="_blank" Visibility="Collapsed"/> <ig:TextColumn Key="DocName" HeaderText="Name" Width="150" IsSummable="False"/>
Hello Ray,
I am just checking if you require any further assistance on the matter.
Tried this but no luck
The image does not appear.
<ig:HyperlinkColumn Key="DocLink" HeaderText="Document Link" Width="130" IsSummable="False" TargetName="_blank" Visibility="Collapsed"/>
<ig:UnboundColumn Key="Download Document">
<HyperlinkButton NavigateUri="{Binding RowData.DocLink}" TargetName="_blank"> <HyperlinkButton.Content> <StackPanel Orientation="Horizontal"> <Image Source="Images/Download.gif" /> <sdk:Label Content="Download"></sdk:Label> </StackPanel> </HyperlinkButton.Content> </HyperlinkButton> </DataTemplate> </ig:UnboundColumn.ItemTemplate> </ig:UnboundColumn>