Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7967001
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T06:34:59+00:00 2026-06-04T06:34:59+00:00

I want to add a custom data attribute to each option in my selectlist,

  • 0

I want to add a custom data attribute to each option in my selectlist, which I could achieve with jQuery.data() or .attr().

However, I am setting up my selectlists with the following html helper:

@Html.EditorFor(x => x.MySelect, MVC.Shared.Views.EditorTemplates.KeyValuePairSelectList, new { SelectListOptions = Model.MySelectList})

Is there a way to do it in the new{} method of the EditorFor?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T06:35:00+00:00Added an answer on June 4, 2026 at 6:35 am

    I will try using any one of the two ways described below,

    1. Using custom editor template

    Suppose we want to display MyModel array as a dropdownlist and the properties SomeProperty1 and SomeProperty2 to be displayed as data attributes in the <option> element.

        public class MyModel
        {
          public int Id { get; set; }
          public string Value { get; set; }
          public string SomeProperty1 { get; set; }
          public string SomeProperty2 { get; set; }
        }
    
      // CustomSelectList.cshtml (editor template)
      @model MyModel[]
    
      <select>
      @foreach (var i in Model)
      {
        <option name="@i.Id" data-attr-1="@i.SomeProperty1" data-attr-2="@i.SomeProperty2">@i.Value</option>
      }
      </select>
    

    2. Using templated razor delegates

        public static class RazorExtensions
        {
          public static HelperResult List<T>(this IEnumerable<T> items,
            Func<T, HelperResult> template)
          {
            return new HelperResult(writer =>
            {
              foreach (var item in items)
              {
                template(item).WriteTo(writer);
              }
            });
          }
        }
    
      // Model is MyModel[]
      <select>
      @Model.List(@<option name="@item.Id" data-attr-1="@item.SomeProperty1" data-attr-2="@item.SomeProperty2">@item.Value</option>)
      </select>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to add custom attribute settings to a generated anchor link of Wordpress.
I want to add a custom model method to the admin filter, however it
I'm having a problem trying to add a custom HTML5 data attribute to the
I want to add custom data to the thread. For example, ambient transaction scope
I want to add classes from System.Activites.Presentation my custom attribute. I tried to do
I want to add custom data to the insert method of the db library
I want add my custom sidebar next right column all page. Please check this
I want to add custom jump list entries to my application in Windows 7.
I am using C#.net I want to add custom edit/delete buttons to my GridView1
I want to add a custom configuration section in my app.config file. Is there

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.