In .NET Framework, custom attributes are user defined attributes which enable providing metadata for application elements such as assemblies, classes and methods.

learn more… | top users | synonyms

0
votes
0answers
15 views

Client Site Custom Validation on MVC 4

I have database generated model User. public partial class User: { [DataMember] public int Id { get; set; } [DataMember] public Nullable<int> UserId [DataMember] ...
0
votes
4answers
61 views

C# MVC Custom Attributes

I have model based on existing database and I have written metadata class and custom attribute class, Now I want to convert all custom attribute logic into Jquery or Javascript custom function, Please ...
-2
votes
1answer
24 views

Get Element whose custom attribute is equal to [closed]

Here is my html. <div class="you"> <img src="http://scoutsamerica.com/uploads/485604_10201093620571706_1239548317_n_4991757.jpg" imgid="122" alt=""> <span ...
-3
votes
2answers
54 views

What's wrong with this piece of code? I don't know how to solve this issue [closed]

Trying to create an element with some custom properties function x(){ var f=document.createElement("div"); this.name="monkey"; return f; } x.prototype.myFunction=function(){ ...
0
votes
1answer
41 views

Custom property of jqgrid cannot be changed?

I want to use a custom property of jqgrid to persist some ASP.NET session value on the page, but cannot seem to get it working. The grid is defined as below, with a custom property called ...
0
votes
0answers
11 views

Reading ComponentModel.DataAnnotations in not MVC project

I've used DataAnnotations extensively in MVC project to control default rendering behavior for objects. While the System.ComponentModel.DataAnnotations namespace is meant to be generic and shared ...
1
vote
1answer
26 views

Is there a way to put attributes on anonymous type properties?

Is there a way you can put attributes on properties in an anonymous type? Or the anonymous type itself? If not when you create it, perhaps afterwards via reflection? As a potential use scenario, let ...
0
votes
1answer
25 views

How do you specify the order of columns of a doddlereport without creating a new object

I am trying to utilize CustomAttributes to specify the order of the properties of the object public class WCG : DistrictExport { [DataMember(Name = "Survey", Order = 190)] public ...
0
votes
4answers
32 views

How can I find the value of Custom Attribute of the Anchor Tag?

I have an anchor with two Custom Attributes. The one with the asterisks is added later. The HTML code is below:- <ul class="dropdown"> <li class="orange"><a href="#" ...
0
votes
1answer
84 views

How to add attributes in flexigrid buttons?

I am working with a project where I have to use Flexigrid.js; But I get lots of things are missing in the plug in. Like I want to disable some buttons whose I don't want to enable at initially. So, I ...
1
vote
1answer
32 views

Adding custom attributes with unique content

I was looking for a way to add a custom property to a xaml control. I found this solution: Adding custom attributes to an element in XAML? Not is my question: How can I permit only unique content ...
0
votes
1answer
39 views

How can i get the value of the custom property?

I was looking for a way to add a custom property to a xaml control. I found this solution: Adding custom attributes to an element in XAML? Class1.cs: public static Class1 { public static ...
1
vote
1answer
39 views

How is declare-stylable name linked to the view that uses its attributes?

Usually al examples of custom attributes are of the form: <declare-stylable name="MyView"> <attr name="name" format="string"/> </declare-styleable> and its usage: ...
0
votes
0answers
32 views

Magneto Custom Product Price change base on product

I want to change custom products prices i want to add price of each product in to cart, here i have attached screen shot Here i have add add price of 8.29 for Qty 2 and 23.85 for Qty 6 I want to use ...
0
votes
2answers
39 views

How does this work - .NET wizardry (undocumented features?)

Found this code Here's the gyst: ViewModel: [ExtendWith(typeof(ValidationTemplate))] public class PersonViewModel :INotifyPropertyChanged { public string GivenNames { get; set; } public ...
2
votes
2answers
86 views

Inheritance of C# attribute classes

How does inheritance of attribute classes work in C#? To clarify, I am talking about the inheritance of the attribute classes themselves (i.e. base classes of System.Attributes), NOT any classes that ...
0
votes
1answer
27 views

Modelstate.Isvalid showing false

I have made a web application in MVC Razor. When I post/submit the page DATA ANNOTATION validation fires on those fields also which was hidden/or not shown to user. As dataannodation [Required] ...
1
vote
2answers
61 views

jQuery - Looping through elements with specific Attribute

I know how to loop through the inputs below, searching for the ones with a specific class of "testers" And here's how I do that: <input type='text' name='firstname' class="testing" ...
0
votes
1answer
35 views

Passing parameters and Custom Attributes

I am not sure where to go with my issue. I want to create a custom authorization attribute for checking roles and permissions. Our permissions are not your standard this role has these permissions but ...
1
vote
1answer
35 views

Custom Attribute that uses Type as a property

I have the following custom attribute that I would like to have a type name as a property. However, I do not want to have to use the string representation of the type when using the attribute. ...
0
votes
0answers
54 views

Is there a way to set function argument attribute in C#?

I want to do something like that: int[] someArray = new int[50]; Foo([ArgumentAttribute(20)] someArray) ; // ... `enter code here` int Foo(int[] someArgument) { // my code ... } not sure ...
2
votes
2answers
61 views

Getting the type of a MemberInfo with reflection

I'm using reflection to load a treeview with the class structure of a project. Each of the members in a class have a custom attribute assigned to them. I don't have a problem getting the attributes ...
0
votes
0answers
114 views

How add attribute to Admin Product's custom tab

i have created a tab on admin product. by following way. <adminhtml_catalog_product_edit> <reference name="product_tabs"> <action method="addTab" ...
1
vote
0answers
68 views

Handle Conversion Error using Resource Files

I have Internationalized my MvC4 application.Inside model there is one property public float Fuels{ get; set; } When i typed string value inside textbox corresponding to this property,I got a ...
0
votes
1answer
121 views

How to create a custom attributes that derive from AuthorizeAttribute?

After a user has create an account, he/she needs to create a profile where he/she submits some information that will be used letter. I have 2 such controllers that need information from the user's ...
0
votes
1answer
35 views

CustomAttribute that validates 2 fields

So i have these 2 input fields Fromdate and ToDate, In MVC I want to create a CustomAttribute to ensure Fromdate is before ToDate. Is this possible? if so how? or what is the alternative? Thanks
0
votes
0answers
53 views

Changing OperationContractAttribute.Action doesn't work

I have a service interface that requires different attributes in different situations. As suggested here, I try to achieve this by changing the behavior and properties of attributes at runtime. The ...
0
votes
1answer
54 views

i would like to explore attributes as means for branding. How do I create/use my own attributes

In MVC, you can decorate a property with values that can be read out by the Html helpers. For example Html.LabelFor() reads out the display attribute of a property. What I am wondering, is it possible ...
1
vote
0answers
59 views

Using TypeDescriptor to load custom attributes in a WCF Service

I have several classes with the following datacontract definition with a metadata class [MetadataType(typeof(ClassAMetadata))] public partial class ClassA { public string PropertyA { get; set; } ...
0
votes
1answer
32 views

RIA Services Class Library and Custom Attributes not generated

I have a Solution with different Projects: A Silverlight Class Library: - In this I have a "Link" to the CS File with Attribute wich is used on a DTO - In this Class there is also a modified ...
0
votes
1answer
36 views

Rename Property from Deserialized Javascript

How do I take deserialize JavaScript and change the name of the property being processed? For example: class MyClass { public string CreateDate {get;set;} } public class DeserializeMyClass { //How ...
0
votes
0answers
52 views

Choose between attributes at runtime

I have a service interface that requires different attributes in different situations. In short there are two options: [DispatchByBodyElementBehavior] public interface FooPortType { ...
0
votes
2answers
60 views

Read Attribute on property without calling getter?

C# 4.0. I have a slow property with an attribute. I want to read this attribute without calling the getter: [Range(0.0f, 1000.0f)] public float X { get { return SlowFunctionX(); } ...
-1
votes
1answer
50 views

Accessing attributes on fields using extension method

I want to check custom attributes on my class members (fields only) by using an extension method. public class DatabaseIdAttribute : Attribute { public int ID { get; set; } public ...
1
vote
1answer
48 views

C# CustomAttribute wouldn't work

I working on .NET 2.0. Unfortunatelly i couldn't use a newer version. I try to wrote my owne Attribute providing a simple value. [AttributeUsage(AttributeTargets.All)] public class testAttribute : ...
1
vote
1answer
64 views

How to return enum's values marked with custom attribute using C#

I have an enum with some members marked by custom attribute like: public enum VideoClipTypeEnum : int { Exhibitions = 1, TV = 2, [ClipTypeDisplayAttribute(false)] Content = 3 } My ...
1
vote
1answer
46 views

Is it possible sort a type's properties returned from Type.GetProperties() using attributes?

According to MSDN, Type.GetProperties() The GetProperties method does not return properties in a particular order, such as alphabetical or declaration order. Your code must not depend on the ...
0
votes
1answer
51 views

javascript - testing against custom attributes in loop

I have a form that I set up as a quiz to take. Eventually I will alter it to calculate the final score of the quiz once done. But I am stuck on this one part. I want to add a point if a right box is ...
0
votes
0answers
45 views

assign an attribute to a group in magento and setting the position in the group

i have developed the following code for assigning a already created attribute to a specic group in the attribute set. the code is : <?php require_once('app/Mage.php'); //Path to Magento ...
0
votes
1answer
124 views

Change values in Class Attribute at runtime

If I have a class like this [Attr("Blah", Data = "Blah")] public class Test : SuperClass{} Is there a way I can change the values of the attribute of an instance of the class at runtime? eg in ...
0
votes
1answer
303 views

Add category attribute with WYSIWYG enabled

I'm following this tutorial: http://www.atwix.com/magento/add-category-attribute/ All is working well, attributes are added to categories, but without the WYSIWYG button below the field. WYSIWYG is ...
1
vote
1answer
152 views

Re-using Android Custom enum xml attributes

I'm defining a custom attribute in XML that is an enum.It looks something like this: <declare-styleable name="MyControl"> <attr name="myProperty"> <enum name="None" ...
0
votes
0answers
95 views

Load JSON object with custom attributes

I studied the examples that cover this question but I'm stuck. I have a Rect and added two attrributes: "label" and "id". I can stringify this rect to JSON. But I don't know how to load it back in. ...
0
votes
4answers
114 views

Dynamically convert a list of properties into an object

I'm prototyping an automated way to declare routes in C# MVC(4) applications, so I decided to use custom attributes for controller's methods: [RouteUrl("foo/{param}")] [RouteConstraint("param", ...
0
votes
1answer
130 views

How to create Custom Authorization attribute?

I am trying to implement a custom authorize attribute on my mvc4 app with parameters. What I am trying to achieve is this: [Authorize(Application == "Initialize,Start,..." , Topic == ...
0
votes
1answer
103 views

Custom authorize attribute - can I store a value for later?

I have a custom authorize attribute, which basically simply verifies that a cookie was sent with the request and that it has a value assigned. public override void ...
1
vote
3answers
60 views

Are attributes in C# using reflection? [closed]

I would like to know how attributes in C# works. I know how to declare an attribute or how to create an attribute. I would like to know how I can generate specific behavior on specific attribute. ...
0
votes
1answer
175 views

How to add 'pass parameter' to custom AuthorizeAttribute

I want to secure controller action so that only users with role "Admin" can get in. I don't use Role/Membership provider at all everything is custom. I made this so far: public class ...
0
votes
0answers
61 views

Write a custom attribute in c#

How can I write a custom attribute which can or does execute a function. The driver tutorial says to look at existing attributes - but where?
2
votes
0answers
97 views

Do custom attribute classes inherit the “Inherited” AttributeUsage flag?

Consider the following scenario: A base attribute class BaseAttribute has an AttributeUsageAttribute specifying that it is not inheritable (Inherited = False). A derived attribute class ...

1 2 3 4 5 12