I have a list with Options:
ATI
FICA
OTHER
FATCA
SOFP
I would like to modify the order so that "Other" is listed last, is this possible?
My code looks like this:
@Html.DropDownListFor(x => x.DocumentTypeId, Model.DocumentTypes, new { style = "width:174px", @title = "Document Type" })
I have tried OrderBy but this only arranges alphabetically.
EDIT:
There are more document types than the few I listed and they are all called from a DB table depending on prior conditions. Nothing is hard coded