Tagged Questions
The readonlyattribute tag has no wiki summary.
11
votes
4answers
400 views
Is there a difference between readonly and { get; }
Do these statements mean the same thing?
int x { get; }
readonly int x;
7
votes
6answers
209 views
How can I make a read only version of a class?
I have a class with various public properties which I allow users to edit through a property grid. For persistence this class is also serialized/deserialized to/from an XML file through ...
3
votes
2answers
1k views
Does ReadOnly(true) work with Html.EditorForModel?
Consider the following setup:
Model:
public class Product
{
[ReadOnly(true)]
public int ProductID
{
get;
set;
}
public string Name
{
get;
...
2
votes
1answer
84 views
How to create readonly textbox in ASP.NET MVC3 Razor
How to create a readonly textbox in ASP.NET MVC3, With Razor view engine ? Is there an HTMLHelper method available to do that ?
Something like this ?
@Html.ReadOnlyTextBoxFor(m => m.userCode)
2
votes
2answers
974 views
Read-only PropertyGrid
I need to show an object in PropertyGrid with the following requirements: the object and its sub object must be read-only, able to activate PropertyGrid's CollectionEditors.
I found a sample that's ...
0
votes
0answers
22 views
Mac OS X: Modify NTFS read-only file attribute
Is is possible to modify the NTFS read-only file attribute via script (any language) on Mac OS X? I've looked into AppleScript and BASH commands but nothing other then NFS options come up.
I have a ...
0
votes
2answers
179 views
Visual studio does not gray out properties with a ReadOnlyAttribute(true)
I know it's stupid but visual studio (2010) doesn't gray out my properties tagged with ReadOnlyAttribute, I can't edit their values (if I try to do it, simply return to the previous value), but they ...
0
votes
1answer
414 views
Read-only input in Android Webkit not working
I have a text input field in my web page that I am using to collect a date (via the jQuery Tools .dateinput). The user does not need to be able to type into the field. A dialog box appears when the ...
0
votes
3answers
685 views
PropertyGrid - Dynamically changing ReadOnlyAttribute
Sigh, another PropertyGrid question. I thought I could get around this until I ran into a problem where I couldn't actually avoid it.
I have a boolean property that sometimes needs to be read-only ...