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

  • SEARCH
  • Home
  • 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 6532185
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T09:58:09+00:00 2026-05-25T09:58:09+00:00

Using @Html.EditorFor(model =>model.IsClient) , where IsClient is a boolean, renders a drop down list

  • 0

Using @Html.EditorFor(model =>model.IsClient), where IsClient is a boolean, renders a drop down list with Not Set, Yes and No as the options.

All well and good.

Now I want to use knockoutjs with the resulting dropdownlist, that I like, so how do I add the data-bind attribute using @Html.EditorFor, that I need for knockoutjs to work with this drop down?

I have tried:

@Html.EditorFor(model => model.IsClient, new Dictionary<string, object> { { "data-bind", "value: Account.IsClient" } })

However, this uses the object additionalViewData parameter, and it doesn’t render the data-bind attribute. Which is probably quite natural, as this parameter is probably nothing to do with Html Attributes for the rendered tag.

However, can’t find any reasonable documentation, and none of the other overloads look likely candidates for what I want.

TIA any suggestions.

  • 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-05-25T09:58:09+00:00Added an answer on May 25, 2026 at 9:58 am

    Brad Wilson blogged about display and editor templates in ASP.NET MVC 2. So you could modify the default template for boolean and add the attributes you need (~/Views/Shared/EditorTemplates/MyTemplate.cshtml):

    @{
        bool? value = null;
        if (ViewData.Model != null) 
        {
            value = Convert.ToBoolean(ViewData.Model, System.Globalization.CultureInfo.InvariantCulture);
        }
    
        var triStateValues = new List<SelectListItem> 
        {
            new SelectListItem 
            { 
                Text = "Not Set",
                Value = String.Empty,
                Selected = !value.HasValue 
            },
            new SelectListItem 
            { 
                Text = "True",
                Value = "true",
                Selected = value.HasValue && value.Value 
            },
            new SelectListItem 
            { 
                Text = "False",
                Value = "false",
                Selected = value.HasValue && !value.Value 
            },
        };
    }
    
    @if (ViewData.ModelMetadata.IsNullableValueType) 
    {
        <!-- TODO: here you can use any attributes you like -->
        @Html.DropDownList(
            "", 
            triStateValues, 
            new { 
                @class = "list-box tri-state", 
                data_bind="value: " + ViewData.TemplateInfo.GetFullHtmlFieldName("") // you could also use ViewData.ModelMetadata.PropertyName if you want to get only the property name and not the entire navigation hierarchy name
            }
        )
    } 
    else 
    {
        @Html.CheckBox("", value ?? false, new { @class = "check-box" })
    }
    

    and finally:

    @Html.EditorFor(model => model.IsClient, "MyTemplate")
    

    or decorate the IsClient property on your view model with the UIHint attribute:

    [UIHint("MyTemplate")]
    public bool? IsClient { get; set; }
    

    and then:

     @Html.EditorFor(x => x.IsClient)
    

    will automatically pick the custom editor template.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

@using (Html.BeginForm(Edit, MyController, FormMethod.Post, new { enctype=multipart/form-data})) { @Html.EditorFor(model => model.Name) <input type=file name=fileUpload
I'm using HTML emails for a client's newsletter. Not using HTML mails is not
I am using Html.CheckBox() . The resulting HTML is: <input id=IsMultiGraph name=IsMultiGraph value=true type=checkbox>
I am using HTML Purifier in my PHP project and am having trouble getting
I am using HTML, and I'd like to hide the script tag from the
I'm trying to create a horizontal 100% stacked bar graph using HTML and CSS.
How do I mask the address of another site using HTML? For example, I'd
<% using (Html.BeginForm() { %> <%=Html.DropDownList(TopItemsList, ViewData[ListData], new { onchange=[???] })%> <% } %>
I want to include a link in my SiteMaster (using Html.ActionLink) UNLESS the view
I'm using an HTML sanitizing whitelist code found here: http://refactormycode.com/codes/333-sanitize-html I needed to add

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.