Tagged Questions
The expando tag has no wiki summary.
5
votes
4answers
143 views
In your architecture, how do you decouple a url from the database layer & business objects layers
BACKGROUND
We've got some links on our site that have formats that look like:
http://oursite.com/books/c_sharp_in_depth_12345.
To handle this, we use a simple property called Url:
public class ...
5
votes
2answers
203 views
adding expando properties to a typed object at runtime in c#
Is there any way in .net to bind a dictionary of properties to an instance at runtime, i.e., as if the base object class had a property like:
public IDictionary Items { get; }
I have come up with a ...
5
votes
1answer
192 views
When Expando Class should be used in Google App Engine Apps?
What are the applications for Google App Engine Expando Class?
And what are the good practices related to it?
5
votes
3answers
777 views
Why .data() function of jQuery is better to prevent memory leaks?
Regarding to jQuery utility function jQuery.data() the online documentation says:
"The jQuery.data() method allows us to
attach data of any type to DOM
elements in a way that is safe from
...
4
votes
2answers
130 views
how to convert Dictionary<dynamic, dynamic> to Dictionary<string, string> using Colllection.ToDictionary()
I am using Dapper to fetch a 2 column resultset into a dictionary.
I noticed that intellisense shows me a .ToDictionary() when I hover over the resultset but I cannot get it to work since dapper uses ...
4
votes
1answer
326 views
Implementing efficient audit trail of record changes in Google App Engine - design patterns
I have a quite common design problem: I need to implement a history log (audit trail) for records in Google App Engine. The history log has to be structured, i.e I cannot join all changes into some ...
3
votes
1answer
320 views
How do I add an expando attribute to a user control?
I am building in some custom javascript functionality in an existing ASP.NET usercontrol. The usercontrol needs to know about a property of the control it is nested in. So, I ended up opting for using ...
3
votes
1answer
194 views
Automatic indexes for expando properties in the google app engine for python
The google app engine python sdk offers an Expando type object which can be used for adding dynamic properties to an object that can be persisted to the datastore.
The app engine also requires that ...
3
votes
2answers
156 views
Creating an Expando object in Ruby
Is there a better way to write this Expando class? The way it is written does not work.
I'm using Ruby 1.8.7
starting code quoted from ...
3
votes
1answer
372 views
Expando Model in Django
Is it possible to implement 'expando' model in Django, much like Google App Engine has? I found a django app named django-expando on github but it's still in early phase.
3
votes
8answers
819 views
Best way to add metadata to HTML elements
I'm trying to put together a way of marking up various components in HTML that get parsed by a jQuery script and created when the page loads.
For example, at the moment I can put the following in to ...
2
votes
2answers
50 views
AppEngine: using Expando class in Django NonRel?
I have an app using using Django Nonrel on AppEngine.
I'd like to use a dynamic model similar to WebApp's db.Expando class - is this possible? Is the Expando class exposed to the DNR layer?
2
votes
1answer
267 views
Why Doesn't JQuery Expose its UUID Functionality?
Underneath the hood JQuery uses a map of "UUIDs" (just a counter it maintains as jQuery.uuid) to work around the well-known memory leak issues browsers have when you attach a property to a tag in the ...
2
votes
1answer
136 views
App engine - check to see if a property exists within Expando class
What is a good way to check to see if a property is populated in an expando class (Python for App Engine)
Can I do:
if Expando_class_name.property_name_to_check:
do = someStuff
Or is that ...
2
votes
1answer
191 views
Groovy Expando Serializable
is there any way to serialize an expando subclass which can be retrieved with dynamically added properties. with the example;
class Sexpando extends Expando implements Serializable{
//String testProp
...
2
votes
1answer
537 views
How to databind a gridview to an ExpandoObject
When I try to databind an asp.net gridview to a IEnumerable using an ObjectDataSource, I get the following exception.
System.Web.HttpException (0x80004005): DataBinding: ...
2
votes
1answer
151 views
In Groovy, When Does It Makes Sense To Use An Expando vs the 'as' operator and Closures?
Groovy is a wonderful language that offers lots of different choices.
In thinking about unit tests, when does it make sense to use an Expando
object vs. the "as" operator with closures?
...
2
votes
2answers
406 views
NHibernate XML Document in Database to Expando Object in entity
I have a SQL Server database that contains an xml column. I need to map that xml column to an expando object within my domain entity. I am using NHibernate. How do I extend NHibernate to ...
2
votes
1answer
435 views
Iterating through Expando's Dynamic properties in Django Templates
I'm trying to iterate through an Expando-Model's dynamic properties in order to output them all. Is there a way of doing this other than creating your own method like such:
class Event(db.Expando):
...
2
votes
2answers
832 views
MongoDB NoRM: query nested objects using Expando
I saw this Q&A http://stackoverflow.com/questions/2900763/mongodb-norm-query-nested-objects, but it seems to apply to strongly-typed objects only.
Is there a way to do a find or update a nested ...
2
votes
2answers
1k views
Reflect on an ExpandoObject
I have written a nifty function that will accept a system.object, reflect on its properties and serialize the object into a JSON string. It looks like this:
public class JSONSerializer
{
public ...
1
vote
2answers
178 views
Deserialize an anonymous type into a dynamic
I have an application that contains a business entity called a 'Task'. This entity has a fixed set of properties, but also the ability to behave as an expando.
So, its schema looks like this:
...
1
vote
1answer
102 views
groovy Expando : why it consider the local variable and not the expando properties?
looking at this test code:
def a = "test"
def expando = new Expando()
expando.a = a
expando.foobar = {a}
expando.a = "test1"
assert expando.foobar() != a
why the last assertion fail? it ...
1
vote
2answers
175 views
App Engine Entity to Dictionary
What is a good way to copy a google app engine entity (in python) to a dictionary object? I'm using db.Expando objects. All properties are expando properties.
Thanks!
1
vote
1answer
119 views
Clone and Expando class object in Python for App Engine
What is a good way to clone (make a copy of) an Expando class object when using Python on Google App Engine?
I came across some code on here, but unless I'm mistaken, it does not work on expando ...
1
vote
1answer
198 views
Is it possible to add attributes to the generated members of an ExpandoObject instance?
I'm trying to use an ExpandoObject as the SelectedObject of a PropertyGrid. I know how to add the properties I want to the ExpandoObject:
public dynamic MakePropertyObject()
{
dynamic expando = ...
1
vote
1answer
361 views
Is it possible to use ExpandoObject to create run-time properties?
Normally, we can create properties like this,
dynamic expando = new ExpandoObject();
expando.Price = 45k;
expando.Value = "Good";
In my case, I won't know the properties such as "Price" or "Value" ...
1
vote
2answers
196 views
How to get invoking member name of expando object?
dynamic test = new ExpandoObject();
test.A = "ok";
try{
Console.WriteLine(test.B);
}
catch (Microsoft.CSharp.RuntimeBinder.RuntimeBinderException ex){
// how can i know that B was invoke?
}
...
1
vote
1answer
158 views
Can Java handle an Expando?
I'll synchronize the data from Google Contacts with a datastore in App Engine... i'm doing this in Python, and the datastore will be read later by a Java GAE instance.
Using Expando felt natural, ...
1
vote
2answers
217 views
How to create dynamic fields in Google App Engine expando class?
I have a db expando class called widget.
I'm passing in a json string and converting it to a dict and then adding it to the datastore.
My question is how can I loop through my dict to create dynamic ...
1
vote
2answers
2k views
Tuples vs. Anonymous Types vs. Expando object. (in regards to LINQ queries)
I am a beginner who finally started understanding anonymous types.
(see old post ...
1
vote
1answer
4k views
Getting a custom user field value (expando) in Liferay
I added a custom user field in Liferay, and set a value on a specific user.
How can I access this value programmatically?
If I try this, I always get null:
String customAttr = ...
1
vote
1answer
507 views
Is it bad for performance to have an App Engine expando model with a huge number of properties?
I've been using a pattern in an application where I'm setting arbitrary attributes on Expando class models in an App Engine app.
This works as expected, but hasn't yet been tested with a really large ...
0
votes
1answer
59 views
Grails: println only works sometimes or something
I make a brand new grails project and put this in the bootstrap:
ExpandoMetaClass.enableGlobally()
Integer.metaClass.precision = {->return 1}
println 3.precision()
println "rofl"
println ...
0
votes
0answers
62 views
Merge Properties of Dynamic ExpandoObject Into Single List Property
and thanks for looking.
Background Info
I am constructing a dynamic ExpandoObject in C# which is ultimately serialized into JSON and returned to a view:
var allObjectData = ...
0
votes
1answer
85 views
Selenium 2.0 and findBy - Custom properties or Expando Properties
Anyone have a suggestion for finding elements on a page by a custom property, like an expando property?
Problem: Site uses alot of JSP and dynamic images for buttons. They do not have static names or ...
0
votes
2answers
139 views
Intercepting dynamic property accessors .NET 4
Here's an interesting question (to me at least): Is it possible to intercept arbitrary property accessors (getters/setters) in an object, such that I can reroute that request elsewhere, such as to a ...
0
votes
2answers
310 views
dojo Expando pane content goes hidden when expanded
I have expandoPane which consists of some buttons.
When I perform other operations in the project and then expand this expandoPane, its contents goes hidden and those are visble after resizing it ...
0
votes
1answer
120 views
How do I reference a field in an ExpandoObject dynamically?
Is there a way to dynamically access the property of an expando using a "IDictionary" style lookup?
var messageLocation = "Message";
dynamic expando = new ExpandoObject();
expando.Message = "I am ...
0
votes
0answers
35 views
Webforms Generic/Reflection-created UI
I have been playing around with creating Reflection-generated UIs in webforms.
I am wondering if anyone else has tried to do this and how they went about it. Also if there are any tools that can make ...
0
votes
1answer
215 views
Implement AOP with groovy to performance profile a Grails app (dynamic weaving, as in AspectJ)
I need to collect performance metrics for a bunch of Grails on Groovy apps. I'm thinking of doing it on the basis of a few examples on the web (cf. http://www.infoq.com/articles/aop-with-groovy).
I ...
0
votes
2answers
255 views
Is there a cross-browser way to use a jQuery selector on an expando property?
I have an ASP.NET page and I am trying to quickly match the validation controls that are tied to a particular textbox (text input) using a jQuery selector. The validation controls render as a span and ...
0
votes
2answers
175 views
Groovy expando dynamic set name
Is it possibly to dynamically set the class of an expando??
Having set
jr = new Expando()
Is there a way to
def end = 'name'
so that
jr.end
will actually give me the value stored in
...
0
votes
1answer
337 views
Can a class be an Expando and Polymodel in Google App Engine?
If I create a PolyModel class, such as Person, can I create an Expando model under that Polymodel? For instance, a class Male(Person) that was also an Expando model? If so, how?
Thanks!