This question is locked. New answers and comments are not allowed.
Is it possible to sort on the selected value in the combobox that I've implemented like this?
Kind Regards,
John
<
telerik:GridViewColumn
UniqueName
=
"Responsible"
Header
=
"Responsible"
IsGroupable
=
"False"
MinWidth
=
"150"
>
<
telerik:GridViewColumn.CellTemplate
>
<
DataTemplate
>
<
ComboBox
ItemsSource
=
"{Binding DepartmentEntities}"
SelectedValuePath
=
"Id"
DisplayMemberPath
=
"Name"
SelectedItem
=
"{Binding SelectedDepartment, Mode=TwoWay}"
MinWidth
=
"150"
>
</
ComboBox
>
</
DataTemplate
>
</
telerik:GridViewColumn.CellTemplate
>
</
telerik:GridViewColumn
>
Kind Regards,
John