5
votes
2answers
46 views
Class attribute evaluation and generators
How exactly does Python evaluate class attributes? I've stumbled across an interesting quirk (in Python 2.5.2) that I'd like explained.
I have a class with some attributes that a …
1
vote
1answer
30 views
Can boost filesystem change the read-only attribute of a file?
Is there a way to change the attribute of a file from read-only to read-write using the boost filesystem library? If not, what is the next-best way to do this on Windows (using Mic …
1
vote
2answers
38 views
MVCContrib, Html.Grid: How can I attach a row-based id to a td tag?
Here's my current view code:
<% Html.Grid((List<ColumnDefinition>)ViewData["Parameters"])
.Columns(column =>
{
column.For(c => c.ID);
column.Fo …
2
votes
7answers
87 views
Python functions can be given new attributes from outside the scope?
I didn't know you could do this:
def tom():
print "tom's locals: ", locals()
def dick(z):
print "z.__name__ = ", z.__name__
z.guest = "Harry"
print "z.guest = ", …
3
votes
1answer
59 views
Can an attribute’s target be derived from an instance of the attribute?
Example:
[AttributeUsage(AttributeTargets.Class)]
public class MyAttribute : Attribute
{
public MyAttribute()
{
Console.WriteLine("I was defined on the {0} class", ????);
…
0
votes
5answers
59 views
Possibility of Implementing Minimize-to-Tray in C# in an Attribute
Attributes are awesome. But is it possible to create a C# attribute class that, when tagged, makes your application minimize to the system tray?
Technically, the attribute would n …
2
votes
3answers
57 views
HTML element with double attribute
(The question below is hypothetical, but for reading convenience I'll ask as if I'm actually doing it)
I'm building a site in HTML 5. Unfortunately, IE doesn't support HTML5 eleme …
2
votes
1answer
112 views
Performance overhead of using attributes in .NET
1.. Is there any performance overhead caused by the usage of attributes? Think for a class like:
public class MyClass
{
int Count {get;set;}
}
where it has 10 …
0
votes
3answers
17 views
how to model mutually exclusive attributes in UML?
I'm working up an analysis model in UML, and I'm a bit stuck when trying to represent a constraint on a couple of attributes in a class diagram. In the following class:
+-------- …
0
votes
3answers
78 views
JavaScript/jQuery: How do I get an array of all attributes in an XML element?
Given an XML element in jQuery like so:
$('<foo oy="vey" foo="bar" here="is" another="attribute" />')
Can I use either jQuery or plain old JavaScript to get an array conta …
0
votes
1answer
29 views
Jquery: Get value from dynamic attribute
Hello,
I’m adding a total amount value to a DIV through a jQuery Ajax call everytime I add a new item to a shopping cart. I need this value to be a part of a difference calculatio …
0
votes
3answers
34 views
selecting textareas
Hi, I am trying to select specific element types in a row and change their attribute, specifically the id and name attributes.
Using the following works fine for single line text …
0
votes
2answers
48 views
What’s the reason for not being able to use static methods, instance methods, etc as a argument to an attribute in .NET?
What's the reason for not being able to use static methods, instance methods, etc as a argument to an attribute in .NET?
Why doesn't C# allow this?
1
vote
1answer
21 views
Get binded value from class property, DefaultBindingProperty is not working for me!
Hello,
I'm creating some entities (class) for my project and I want to set a default binging property for it, here is an example
namespace MyNamespace
{
[System.ComponentModel …
0
votes
1answer
31 views
Rails creating users, roles, and projects
I am still fairly new to rails and activerecord, so please excuse any oversights.
I have 3 models that I'm trying to tie together (and a 4th to actually do the tying) to create a …
