The attributes tag should be used for any issues relating to a property of an object, element, or file, etc.
359
votes
33answers
38k views
Most Useful Attributes [closed]
I know that attributes are extremely useful. There are some predefined ones such as [Browsable(false)] which allows you to hide properties in the properties tab. Here is a good question explaining ...
270
votes
5answers
42k views
What are differences between AssemblyVersion, AssemblyFileVersion and AssemblyInformationalVersion?
There are three assembly version attributes. What are differences? Is it ok if I use AssemblyVersion and ignore the rest?
MSDN says:
AssemblyVersion:
Specifies the version of the assembly ...
219
votes
6answers
73k views
How to know if an object has an attribute in Python
Is there a way in Python to determine if an object has some attribute? For example:
>>> a = SomeClass()
>>> a.someProperty = value
>>> a.property
Traceback (most recent ...
161
votes
4answers
15k views
Why does C# forbid generic attribute types?
This causes a compile-time exception:
public sealed class ValidatesAttribute<T> : Attribute
{
}
[Validates<string>]
public static class StringValidation
{
}
I realize C# does not ...
120
votes
8answers
48k views
Difference between id and name attributes in HTML
What is the difference between the id and name attributes? They both seem to serve the same purpose of providing an identifier.
I would like to know (specifically with regards to ASP.net web forms) ...
117
votes
10answers
126k views
Check existence of an attribute with JQuery
I have a collection of checkboxes with generated ids and some of them have an extra attribute. Is it possible to use JQuery to check if an element has a specific attribute?
For example, can I verify ...
113
votes
13answers
187k views
How to get the value of a selected radio button using its name in jQuery?
I am having 4 radio buttons in my web page, like below:
<label for="theme-grey"><input type="radio" id="theme-grey" name="theme" value="grey" />Grey</label>
<label ...
89
votes
13answers
11k views
.NET: What are attributes?
What are they, what are they good for, and how do I create my own attributes?
79
votes
7answers
31k views
Getting attributes of Enum's value
I would like to know if it is possible to get attributes of the enum values and not of the enum itself? For example, suppose I have the following enum:
enum FunkyAttributesEnum
{
[Description("Name ...
74
votes
6answers
13k views
What are the best practices for using Assembly Attributes?
I have a solution with multiple project. I am trying to optimize AssemblyInfo.cs files by linking one solution wide assembly info file. What are the best practices for doing this? Which attributes ...
73
votes
5answers
42k views
Python dictionary from an object's fields
Do you know if there is a built-in function to build a dictionary from an arbitrary object? I'd like to do something like this:
>>> class Foo:
... bar = 'hello'
... baz = 'world'
...
...
70
votes
11answers
29k views
How to Compare Flags in C#?
I have a flag enum below.
[Flags]
public enum FlagTest
{
None = 0x0,
Flag1 = 0x1,
Flag2 = 0x2,
Flag3 = 0x4
}
I cannot make the if statement evaluate to true.
FlagTest testItem = ...
67
votes
7answers
7k views
Is there a limit to the length of HTML attributes?
How long is too long for an attribute value in HTML?
I'm using HTML5 style data attributes (data-foo="bar") in a new application, and in one place it would be really handy to store a fair whack of ...
64
votes
8answers
22k views
Localization of DisplayNameAttribute
I am looking for a way to localize properties names displayed in a PropertyGrid. The property's name may be "overriden" using the DisplayNameAttribute attribute. Unfortunately attributes can not have ...
60
votes
8answers
37k views
Find a private field with Reflection?
Given this class
class Foo
{
// Want to find _bar with reflection
[SomeAttribute]
private string _bar;
public string BigBar
{
get { return this._bar; }
}
}
I want ...
53
votes
11answers
57k views
private final static attribute vs private final attribute
In java, what's the difference between:
private final static int NUMBER = 10;
And
private final int NUMBER = 10;
Both are private and both are final, the difference is the static attribute.
...
53
votes
8answers
48k views
Html attributes for EditorFor() in ASP.NET MVC
Why can't I pass in html attributes to EditorFor()? eg;
<%= Html.EditorFor(model => model.Control.PeriodType,
new { disabled = "disabled", readonly = "readonly" }) %>
I don't want to ...
51
votes
6answers
79k views
How to stop event propagation with inline onclick attribute?
Consider the following:
<div onclick="alert('you clicked the header')" class="header">
<span onclick="alert('you clicked inside the header');">something inside the header</span>
...
49
votes
7answers
11k views
Custom Compiler Warnings
When using the ObsoleteAtribute in .Net it gives you compiler warnings telling you that the object/method/property is obsolete and somthing else should be used. I'm currently working on a project that ...
49
votes
9answers
27k views
Can attributes be added dynamically in C#?
Is it possible to add attributes at runtime or to change the value of an attribute at runtime?
43
votes
7answers
21k views
Get an object attributes list in Objective-C
How can I get a list (in the form of an NSArray or NSDictionary) of a given object attributes in Objective-C?
Imagine the following scenario: I have defined a parent class which just extends ...
43
votes
4answers
17k views
C# - how enumerate all classes with custom class attribute?
Question based on MSDN example: http://msdn.microsoft.com/en-us/library/aa288454(VS.71).aspx
Let's say we have some C# classes with HelpAttribute in standalone desktop application. Is it possible to ...
43
votes
6answers
26k views
Get Enum from Description attribute [duplicate]
Possible Duplicate:
Finding an enum value by its Description Attribute
I have a generic extension method which gets the Description attribute from an Enum:
enum Animal
{
...
42
votes
5answers
16k views
How exactly does <script defer=“defer”> work?
I have a few <script> elements, and the code in some of them depend on code in other <script> elements. I saw the defer attribute can come in handy here as it allows code blocks to be ...
41
votes
8answers
16k views
Python function attributes - uses and abuses
Not many are aware of this feature, but Python's functions (and methods) can have attributes. Behold:
>>> def foo(x):
... pass
...
>>> foo.score = 10
>>> dir(foo)
...
41
votes
8answers
12k views
How best to use File Version and Assembly Version?
In .NET there are two version numbers available when building a project, File Version and Assembly Version. How are you using these numbers? Keeping them the same? Auto-incrementing one, but ...
41
votes
2answers
27k views
How do you programmatically set an attribute in Python?
Suppose I have a python object x and a string s, how do I set the attribute s on x? So:
>>> x = SomeObject()
>>> attr = 'myAttr'
>>> # magic goes here
>>> x.myAttr
...
40
votes
4answers
48k views
Get all Attributes from a HTML element with Javascript/jQuery
I want to put all attributes in a Html element into an array:
like i have a jQuery Object, whichs html looks like this:
<span name="test" message="test2"></span>
now one way is to use ...
39
votes
4answers
13k views
Can a C# class inherit attributes from its interface?
This would appear to imply "no". Which is unfortunate.
[AttributeUsage(AttributeTargets.Interface | AttributeTargets.Class,
AllowMultiple = true, Inherited = true)]
public class ...
36
votes
3answers
52k views
How to change an element's title attribute using jQuery
I have an form input element and I want to change it's title attribute. This has got to be easy as pie but for some reason I cannot find how to do this. How is this done and where and how should I ...
34
votes
2answers
6k views
C# - Attribute to Skip over a Method while Stepping in Debug Mode
Is there an attribute I can use on a method so that when stepping through some code in Debug mode the Debugger stays on the outside of the method?
34
votes
7answers
12k views
NUnit Test Run Order
By default nunit tests run alphabetically. Does anyone know of any way to set the execution order? Does an attribute exist for this?
Any help would be greatly appreciated.
Thanks
Zaps
34
votes
3answers
15k views
What does [STAThread] do?
Hi
I am learning C# 3.5 and wanna to know that what [STAThread] do in our programs?
Thank you
32
votes
4answers
20k views
Get list of data-* attributes using javascript / jQuery
Given an arbitrary HTML element with zero or more data-* attributes, how can one retrieve a list of key-value pairs for the data.
E.g. given this:
<div id='prod' data-id='10' data-cat='toy' ...
32
votes
2answers
18k views
How do I remove the “extended attributes” on a file in mac osx
I have an applescript that runs a stress test. Part of the test is to open, save, and close certain files. Somehow, the files have picked up some "extended attributes" that prohibit the files from ...
32
votes
4answers
10k views
Python: Difference between class and instance attributes
Is there any meaningful distinction between:
class A(object):
foo = 5 # some default value
vs.
class B(object):
def __init__(self, foo=5):
self.foo = foo
If you're creating a ...
31
votes
5answers
9k views
What's the difference between using the Serializable attribute & implementing ISerializable?
What's the difference between using the Serializable attribute and implementing the ISerializable interface?
30
votes
5answers
22k views
python create object and add attributes to it
I want to create a dynamic object (inside another object) in python and then add attributes to it.
I tried:
obj = someobject
obj.a = object()
setattr(obj.a, 'somefield', 'somevalue')
but this ...
30
votes
2answers
12k views
How to get a Token from a Lucene TokenStream?
I'm trying to use Apache Lucene for tokenizing, and I am baffled at the process to obtain Tokens from a TokenStream.
The worst part is that I'm looking at the comments in the JavaDocs that address my ...
30
votes
4answers
91k views
How to add/update an attribute to an HTML element using javascript?
I'm trying to find a way that will add / update attribute using javascript. I know I can do it with SetAttribute function but that doesn't work in IE.
30
votes
7answers
77k views
JavaScript: changing the value of onclick with or without jQuery
I'd like to change the value of the onclick attribute on an anchor. I want to set it to a new string that contains JavaScript. (That string is provided to the client-side JavaScript code by the ...
30
votes
1answer
8k views
When to use setAttribute vs .attribute= in JavaScript?
Is there a best-practice indication about using setAttribute instead of the dot (.) attribute notation?
e.g.
myObj.setAttribute("class","nameOfClass");
- and -
...
30
votes
4answers
2k views
Compelling Reasons to Use Marker Interfaces Instead of Attributes
It's been discussed before on Stack Overflow that we should prefer attributes to marker interfaces (interfaces without any members). Interface Design article on MSDN asserts this recommendation too:
...
29
votes
3answers
8k views
C# Xml serialization - disable rendering root element of array
can i someway disable rendering of root element of collection?
this class with serialization attibutes
[XmlRoot(ElementName="SHOPITEM", Namespace="")]
public class ShopItem
{
...
29
votes
2answers
9k views
Why can't you add attributes to object in python?
(Written in Python shell)
>>> o = object()
>>> o.test = 1
Traceback (most recent call last):
File "<pyshell#45>", line 1, in <module>
o.test = 1
AttributeError: ...
28
votes
4answers
7k views
Can I just make up attributes on my HTML tags?
Am I allowed to add whatever attributes I want to HTML tags such that I can retrieve their value later on using javascript? For example:
<a href="something.html" hastooltip="yes" ...
28
votes
3answers
17k views
How to pass objects into an attribute constructor
I am attempting to pass objects into an Attributes constructor as follows:
[PropertyValidation(new NullOrEmptyValidatorScheme())]
public string Name { get; private set; }
With this attribute ...
28
votes
5answers
2k views
Adding values to a magento dropdown or multi-select product attribute while adding a new product
I'm wondering if anyone has found or written an extension that would allow a magento website administrator the ability to add values to their products attribute while adding the product. For example, ...
27
votes
3answers
4k views
How do Perl method attributes work?
A little known built-in Perl feature is attributes. However, the official documentation is doing a rather bad job introducing newbies to the concept. At the same time, frameworks like Catalyst use ...
27
votes
7answers
18k views
Change Attribute's parameter at runtime
I am not sure whether is it possible to change attribute's parameter during runtime? For example, inside an assembly I have the following class
public class UserInfo
{
[Category("change me!")]
...


