This question is locked. New answers and comments are not allowed.
Hi,
I'm binding to a boolean in my Grid using;
Which works just fine and displays as I'd expect. I can filter on 'true' and 'false' with the behaviour being as expected. However I can't seem to sort. When I click the column header to sort the data is displayed in its unsorted state. If I remove the server template the behaviour is the same.
Can anyone help?
Ryan.
I'm binding to a boolean in my Grid using;
columns.Bound(x => x.IsActive).Template(x => x.IsActive ? "Active" : "Inactive" ).Width(100);
Which works just fine and displays as I'd expect. I can filter on 'true' and 'false' with the behaviour being as expected. However I can't seem to sort. When I click the column header to sort the data is displayed in its unsorted state. If I remove the server template the behaviour is the same.
Can anyone help?
Ryan.