Hi,
maybe i'm blind but i don't find a solution, how to get the value of a certain column after selecting a row.
Documentation of the RadGridView for WPF (SelectionChanged event) :
I tried to use it as described, but "Fields" isn't a Member of "Telerik.Windows.Data.Record"!?
Thanks for help
Martin
Edit: In another Thread i found, that "CurrentRecord.Fields" doesn't exist anymore in the current release (the documentation is not very helpful). But i still do not understand, how to get the value in a specific column of the selected row.
maybe i'm blind but i don't find a solution, how to get the value of a certain column after selecting a row.
Documentation of the RadGridView for WPF (SelectionChanged event) :
Private Sub radGridViewSelection_SelectionChanged(ByVal sender As Object, ByVal e As Telerik.Windows.Data.SelectionChangeEventArgs) |
label1.Content = radGridViewSelection.SelectedRecord.Fields("CustomerID").ToString |
End Sub |
I tried to use it as described, but "Fields" isn't a Member of "Telerik.Windows.Data.Record"!?
Thanks for help
Martin
Edit: In another Thread i found, that "CurrentRecord.Fields" doesn't exist anymore in the current release (the documentation is not very helpful). But i still do not understand, how to get the value in a specific column of the selected row.