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

The Archive Base Latest Questions

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

@Html.RadioButtonFor(modelItem => item.CheckerApproved, true) @Html.LabelFor(modelItem => item.CheckerApproved, Accepted) @Html.RadioButtonFor(modelItem => item.CheckerApproved, false) @Html.LabelFor(modelItem =>

  • 0
@Html.RadioButtonFor(modelItem => item.CheckerApproved, true)
@Html.LabelFor(modelItem => item.CheckerApproved, "Accepted")
@Html.RadioButtonFor(modelItem => item.CheckerApproved, false)
@Html.LabelFor(modelItem => item.CheckerApproved, "Rejected")

What I’m wanting is for some way to make these disabled or readonly when the user isn’t Authenticated.

ie. Enabled when:

HttpContext.Current.User.Identity.IsAuthenticated

Is there an easy way to do this? Would you put them on some sort of panel? Not sure for MVC?

Would you set there enabledability individually for each line?

  • 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:54:06+00:00Added an answer on May 25, 2026 at 9:54 am

    What I’m wanting is for some way to make these disabled or readonly
    when the user isn’t Authenticated.

    A more than excellent candidate for a custom helper:

    using System;
    using System.Linq.Expressions;
    using System.Web;
    using System.Web.Mvc;
    using System.Web.Mvc.Html;
    
    public static class RadioExtensions // LOL for this name
    { 
        // TODO: Pick a better name here than MyRadioButtonFor
        public static IHtmlString MyRadioButtonFor<TModel, TProperty>(
            this HtmlHelper<TModel> html,
            Expression<Func<TModel, TProperty>> ex,
            object value
        )
        {
            var isAuthenticated = html.ViewContext.HttpContext.User.Identity.IsAuthenticated;
            if (isAuthenticated)
            {
                return html.RadioButtonFor(ex, value);
            }
            // Remark: adapt with readonly if necessary,
            // note that there is a crucial difference between a readonly and disabled
            // element in HTML. Up to you to pick the desired behavior
            return html.RadioButtonFor(ex, value, new { @disabled = "disabled" });
        }
    }
    

    and in your view simply consume the fruits of your labour:

    @Html.MyRadioButtonFor(modelItem => item.CheckerApproved, true)
    @Html.LabelFor(modelItem => item.CheckerApproved, "Accepted")
    @Html.MyRadioButtonFor(modelItem => item.CheckerApproved, false)
    @Html.LabelFor(modelItem => item.CheckerApproved, "Rejected")
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

say I have: @Html.RadioButtonFor(modelItem => item.CheckerApproved, true) @Html.LabelFor(modelItem => item.CheckerApproved, Accepted) @Html.RadioButtonFor(modelItem => item.CheckerApproved,
Hi fairly new to using MVC radio buttons. I have some code: @Html.RadioButtonFor(modelItem =>
How can i set selected = true and disable this radio button <%= Html.RadioButtonFor(m
I have this Razor Template <table> <tr> <td>@Html.RadioButtonFor(i => i.Value, 1)</td> <td>@Html.LabelFor(i => i.Value,
<%= Html.RadioButtonFor(m => m.AmortizationTermInYears, true, new { propertyName = AmortizationTermInYears, onchange = showAmortizationTermInYears();UpdateField(this);, amortizationTermInYearsRadio
Hi I have a ModelBinded View foreach (var Model in Model) { @Html.RadioButtonFor(modelItem =>
Can someone provide a simple example of how to properly use Html.RadioButtonFor? Let's say
HTML: <ul class=dropdown> <li><a href=#>Item 1</a></li> <li> <a href=#>Item 2</a> <div class=submenu>something</div> </li> </ul>
html code is <html> <head> 123 </head> <body> some text </body> </html> and php
Good morning. I have the following conditions in radiobutton <td> @Html.RadioButtonFor(model => model.ImagensSelecionadas, new

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.