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 8360957
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T11:35:26+00:00 2026-06-09T11:35:26+00:00

How to display every property in checkbox inside one line I have object features

  • 0

How to display every property in checkbox inside one line
I have object features which have many properties, these properties are dynamically assigned and I do not want to hard code these in the view.
So, right now I have something like these

@Html.CheckBoxFor(model => model.Features.IsRegistered, new { @disabled = "disabled" })
@Html.CheckBoxFor(model => model.Features.IsPhone, new { @disabled = "disabled" 

…. and many more

how to render exactly like these above but for all object properties, is this possible?
Thanks

  • 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-09T11:35:28+00:00Added an answer on June 9, 2026 at 11:35 am

    I’ve only done some limited testing with this, but here’s a basic implementation of an extension method you can play with:

    public static class HtmlHelperExtensions
    {
        public static MvcHtmlString CheckBoxesForModel(this HtmlHelper helper,
            object model)
        {
            if (model == null)
                throw new ArgumentNullException("'model' is null");
    
            return CheckBoxesForModel(helper, model.GetType());
        }
    
        public static MvcHtmlString CheckBoxesForModel(this HtmlHelper helper,
            Type modelType)
        {
            if (modelType == null)
                throw new ArgumentNullException("'modelType' is null");
    
            string output = string.Empty;
            var properties = modelType.GetProperties(BindingFlags.Instance | BindingFlags.Public);
    
            foreach (var property in properties)
                output += helper.CheckBox(property.Name, new { @disabled = "disabled" });
    
            return MvcHtmlString.Create(output);
        }
    }
    

    You may wish to expand on it to allow it to take HTML attributes as well, rather than hard-coding them, but this should get you started.

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

Sidebar

Related Questions

My model has a object which has a date property... [Required(ErrorMessage={0} is required)] [Display(Name=Donation
I have a website with live stats that I wish to display to every
Every now and then I receive a Word Document that I have to display
According to, http://www.freshvanilla.org:8080/display/www/Java+Interview+Questions Under Which class is the superclass of every class? null seems
I have a Listbox, which is using an ItemTemplate to display an image. I
I have a page that display of all News in a database, which I
It seems every property I tested with ::before works except line-height. It's consistent across
I have gone through many questions asked here and on other forums regarding @property
I have a base class ReportElement which has type property: public abstract class ReportElement
Every page on my application will display 1000 records and they are only needed

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.