To give you background, i am using Silverlight + MVVM and PRISM.
I have some Master data to show in grid and have the first column as hyperlink to the detail data. I am trying to expose some command for a Hyperlink button, but it doesnt seem to work fine.
Here's my XAML ->
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn Header="Detail ID">
<telerik:GridViewColumn.CellTemplate>
<DataTemplate>
<HyperlinkButton Content="{Binding DetailID}"
Command="{Binding SelectGridItemCommand}"
CommandParameters={Binding}
/>
</DataTemplate>
</telerik:GridViewColumn.CellTemplate>
</telerik:GridViewDataColumn>
... [other columns]
</<telerik:RadGridView.Columns>
Basically, I want to do some processing on the text that is present on the Column name and navigate to the detail page.
Can someone help me here..