mvc3で同じドロップダウンリストを作成するための最良の方法は何ですか?このリンクでわかるように、 HtmlJSの例
こんな風にやってみました
モデル:
public enum oporetor
{
greater_then = '>',
less_than = '<',
equal = '='
}
public oporetor getOp { get; set; }
}
ビューモデル:
@Html.DropDownListFor(model => model.getOp, new SelectList(Enum.GetValues(typeof(Fnx.Esb.ServiceMonitor.ViewModel.AdvanceSearchModel.oporetor))))
見る:
@Html.EditorFor(x => x.AdvanceSearchModel)
great_then、less_than、equalの基本的なドロップダウンリストを取得しました。ドロップダウンリストに<、>、=を表示するにはどうすればよいですか?