Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For some reason my "gridview" wont sort by a float property called "MonthlyVoteRatio".. is this a known problem?

    col.For(e => e.MonthlyVoteRatio).Sortable(true);

The class of the object

public class TruckUploadModel
{
    public int ImageId { get; set; }
    public long Id { get; set; }
    public bool Declined { get; set; }
    public bool Handled { get; set; }
    public DateTime Date { get; set; }
    public float MonthlyVoteRatio { get; set; }
}

Thanks in advance!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.