DataGrid custom sort/filter methods?

Hi,

is it possible to call custom comparer methods in for DataGrid filter/sort columns? I have data items that contain custom content (that's being generated within the Template tag) and I'd like to be able to sort those....

Alternatively, if custom methods are a no go, can I sort based on the textual output within the column?

Thanks!

You can do that if you use the LoadData event to populate the DataGrid. Then you can complete take control over sorting and filtering.

Ah cool, I overread that in the documentation. Will give it a go! Thanks.