user683957
user683957

Reputation:

Sorting doesn't work on WPF DataGrid templated columns?

I noticed that sorting always do not work on DataGrid templated columns, is there any solution for this problem?

Upvotes: 3

Views: 1258

Answers (1)

Mohammed A. Fadil
Mohammed A. Fadil

Reputation: 9387

You need to set the SortMemberPath="PropertyName" property in your templated DataGrid column.

Upvotes: 7

Related Questions