I am quite new and really struggle with the below issue:
I have a below column, which loads data correctly:
<xcdg:Column Title="TestData" FieldName="TestData" Width="1*" >
But I would need to modify it, by selecting a value from a popup window.
I already solved similar before, but it was for textbox:
<TextBox Grid.Row="1" Grid.Column="1" Text="{Binding Model.TestData}"> <TextBox.InputBindings> <KeyBinding Key="F12" Command="{Binding SearchCommand}" CommandParameter="TestData"></KeyBinding> </TextBox.InputBindings> </TextBox>
Not sure if more information needed about the popup, basically it gives back the selected value, which should get to the column.