SelectExtensions Methods
| Name | Description | |
|---|---|---|
|
DropDownList(HtmlHelper, String) | Returns a single-selection select element using the specified HTML helper and the name of the form field. |
|
DropDownList(HtmlHelper, String, IEnumerable(SelectListItem)) | Returns a single-selection select element using the specified HTML helper, the name of the form field, and the specified list items. |
|
DropDownList(HtmlHelper, String, String) | Returns a single-selection select element using the specified HTML helper, the name of the form field, and an option label. |
|
DropDownList(HtmlHelper, String, IEnumerable(SelectListItem), IDictionary(String, Object)) | Returns a single-selection select element using the specified HTML helper, the name of the form field, the specified list items, and the specified HTML attributes. |
|
DropDownList(HtmlHelper, String, IEnumerable(SelectListItem), Object) | Returns a single-selection select element using the specified HTML helper, the name of the form field, the specified list items, and the specified HTML attributes. |
|
DropDownList(HtmlHelper, String, IEnumerable(SelectListItem), String) | Returns a single-selection select element using the specified HTML helper, the name of the form field, the specified list items, and an option label. |
|
DropDownList(HtmlHelper, String, IEnumerable(SelectListItem), String, IDictionary(String, Object)) | Returns a single-selection select element using the specified HTML helper, the name of the form field, the specified list items, an option label, and the specified HTML attributes. |
|
DropDownList(HtmlHelper, String, IEnumerable(SelectListItem), String, Object) | Returns a single-selection select element using the specified HTML helper, the name of the form field, the specified list items, an option label, and the specified HTML attributes. |
|
DropDownListFor(TModel, TProperty)(HtmlHelper(TModel), Expression(Func(TModel, TProperty)), IEnumerable(SelectListItem)) | Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items. |
|
DropDownListFor(TModel, TProperty)(HtmlHelper(TModel), Expression(Func(TModel, TProperty)), IEnumerable(SelectListItem), IDictionary(String, Object)) | Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and HTML attributes. |
|
DropDownListFor(TModel, TProperty)(HtmlHelper(TModel), Expression(Func(TModel, TProperty)), IEnumerable(SelectListItem), Object) | Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and HTML attributes. |
|
DropDownListFor(TModel, TProperty)(HtmlHelper(TModel), Expression(Func(TModel, TProperty)), IEnumerable(SelectListItem), String) | Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and option label. |
|
DropDownListFor(TModel, TProperty)(HtmlHelper(TModel), Expression(Func(TModel, TProperty)), IEnumerable(SelectListItem), String, IDictionary(String, Object)) | Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items, option label, and HTML attributes. |
|
DropDownListFor(TModel, TProperty)(HtmlHelper(TModel), Expression(Func(TModel, TProperty)), IEnumerable(SelectListItem), String, Object) | Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items, option label, and HTML attributes. |
|
ListBox(HtmlHelper, String) | Returns a multi-select select element using the specified HTML helper and the name of the form field. |
|
ListBox(HtmlHelper, String, IEnumerable(SelectListItem)) | Returns a multi-select select element using the specified HTML helper, the name of the form field, and the specified list items. |
|
ListBox(HtmlHelper, String, IEnumerable(SelectListItem), IDictionary(String, Object)) | Returns a multi-select select element using the specified HTML helper, the name of the form field, the specified list items, and the specified HMTL attributes. |
|
ListBox(HtmlHelper, String, IEnumerable(SelectListItem), Object) | Returns a multi-select select element using the specified HTML helper, the name of the form field, and the specified list items. |
|
ListBoxFor(TModel, TProperty)(HtmlHelper(TModel), Expression(Func(TModel, TProperty)), IEnumerable(SelectListItem)) | Returns an HTML select element for each property in the object that is represented by the specified expression and using the specified list items. |
|
ListBoxFor(TModel, TProperty)(HtmlHelper(TModel), Expression(Func(TModel, TProperty)), IEnumerable(SelectListItem), IDictionary(String, Object)) | Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and HTML attributes. |
|
ListBoxFor(TModel, TProperty)(HtmlHelper(TModel), Expression(Func(TModel, TProperty)), IEnumerable(SelectListItem), Object) | Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and HTML attributes. |
Show: