5

選択リストを作成しようとしています。ビューモデルのコレクションを使用して、次のコードで各オプションの値とテキストを設定できるように作成しました。

@Html.DropDownListFor(model => model.Networks, new SelectList(Model.Networks, "NetworkID", "Name"), new { @class="form-control" })

Model.Networks には、CountryId という別のプロパティが含まれています。次のように、各オプション タグに属性を追加したいと思います。

<option value="[NetworkId]" data-countryId="[CountryId]">Canada</option>

これを行うには、どのようにすればよいですか?

4

1 に答える 1

6

フォーム ヘルパー クラスを作成してカスタム ドロップダウン リストを作成し、IDictionary タイプの追加のプロパティ「itemsHtmlAttributes」を持つカスタム「selectListItem」クラスを作成できます。以下を参照してください。デフォルトのモデル バインディングを機能させるには、'id' または 'name' 属性をいじる必要があるかもしれません。以下は少し面倒ですが、TagBuilder を使用して「select」タグと「option」タグを作成することをお勧めします。

public class SelectListItemCustom : SelectListItem
{
    public IDictionary<string, object> itemsHtmlAttributes { get; set; }
}

public static class FormHelper
{
    public static MvcHtmlString DropDownListForCustom(this HtmlHelper htmlHelper, string id, List<SelectListItemCustom> selectListItems)
    {
        var selectListHtml = "";

        foreach (var item in selectListItems)
        {
            var attributes = new List<string>();
            foreach (KeyValuePair<string, string> dictItem in item.itemsHtmlAttributes)
            {
                attributes.Add(string.Format("{0}='{1}'", dictItem.Key, dictItem.Value));
            }
            // do this or some better way of tag building
            selectListHtml += string.Format(
                "<option value='{0}' {1} {2}>{3}</option>", item.Value,item.Selected ? "selected" : string.Empty,string.Join(" ", attributes.ToArray()),item.Text);
        }
        // do this or some better way of tag building
        var html = string.Format("<select id='{0}' name='{0}'>{1}</select>", id, selectListHtml);

        return new MvcHtmlString(html);
    }
}

見る:

@{
    var item = new SelectListItemCustom { Selected = true, Value = "123", Text = "Australia", itemsHtmlAttributes = new Dictionary<string, object> { { "countrycode", "au" } } };
    var items = new List<SelectListItemCustom> { item };

    Html.Raw(Html.DropDownListForCustom("insertIdHere", items))
}
于 2013-10-04T01:56:13.597 に答える