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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T16:47:09+00:00 2026-05-10T16:47:09+00:00

I have a strongly-typed MVC View Control which is responsible for the UI where

  • 0

I have a strongly-typed MVC View Control which is responsible for the UI where users can create and edit Client items. I’d like them to be able to define the ClientId on creation, but not edit, and this to be reflected in the UI.

To this end, I have the following line:

<%= Html.TextBox('Client.ClientId', ViewData.Model.ClientId, new   { @readonly =     (ViewData.Model.ClientId != null && ViewData.Model.ClientId.Length > 0        ? 'readonly' : 'false')   } ) %> 

It seems that no matter what value I give the readonly attribute (even ‘false’ and ”), Firefox and IE7 make the input read-only, which is annoyingly counter-intuitive. Is there a nice, ternary-operator-based way to drop the attribute completely if it is not required?

  • 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. 2026-05-10T16:47:09+00:00Added an answer on May 10, 2026 at 4:47 pm

    Tough problem… However, if you want to define only the readonly attribute, you can do it like this:

    <%= Html.TextBox('Client.ClientId', ViewData.Model.ClientId,    ViewData.Model.ClientId != null && ViewData.Model.ClientId.Length > 0      ? new { @readonly =  'readonly' }      : null)  %> 

    If you want to define more attributes then you must define two anonymous types and have multiple copies of the attributes. For example, something like this (which I don’t like anyway):

    ClientId.Length > 0    ? (object)new { @readonly = 'readonly', @class = 'myCSS' }    : (object)new { @class = 'myCSS' } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a strongly typed user control (partial) and I'd like to be able
i wish to create a reusable ASP.NET MVC ViewUserControl which is strongly typed to
There's no strongly typed View() method to return an ActionResult. So, suppose I have
As the questions says I have always believed that a strongly typed list is
We have our own ORM we use here, and provide strongly typed wrappers for
I'm using MVC to create a few simple CRUD pages. I have a stringly
I have HTML table on the ASP.NET MVC View page. Now I have to
I'm starting to use DataAnnotations in ASP.NET MVC and strongly typed template helpers. Now
Have just started using Visual Studio Professional's built-in unit testing features, which as I
I'm creating a Google Maps partial view/user control in my project that is passed

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.