An expando is an custom property attached to a document object.
0
votes
1answer
35 views
Inject a Groovy Closure into Expando that acts as Property
I have a class that extends Expando and gets injected with dynamic properties.
class Dynamo extends Expando {
}
Dynamo dynamic = [ firstName: 'bob', lastName: 'dobbs' ]
I'd like to create a ...
3
votes
1answer
117 views
How can I add extra properties to document metadata field types in Liferay 6.1?
I'm new to Liferay and I have the following situation:
I would like to add extra properties to document metadata field types in Liferay 6.1.20.
For example, I would like to add property 'readonly' ...
0
votes
2answers
55 views
Run a method of setup of liferay portal
I have a hook where to add an organization and few custom field variables (Expando Variables) automatically to a liferay portal. How do I run that hook or a method in the hook during liferay setup or ...
0
votes
1answer
81 views
Why do I get a StackoverflowError on when Groovy JsonBuilder tries to serialize an Expando?
I am getting a StackoverflowError (not traced back to my code) when I try to serialize an Expando. Reproduced with groovy shell:
... groovy-2.0.6/bin/groovysh new groovy.json.JsonBuilder(new ...
0
votes
1answer
105 views
Issue with multiview control and expando attributes
I have a multiview control which I effectively use the same as a wizard stepping through 4 panels to complete a form.
Each view has a number of input controls/validator controls. For reuse, these are ...
4
votes
2answers
189 views
What is the Dart “Expando” feature about, what does it do?
Have been seeing the term "Expando" used recently with Dart. Sounds interesting. The API did not provide much of a clue to me.
An example or two could be most helpful!
(Not sure if this is ...
0
votes
1answer
82 views
How to set expanded menu to be shut on page load
I have a div that expands on a click, but I can't work out how to set it to be un-expanded when the page is closed?
<script>
function toggleDiv(id1,id2) {
var tag = ...
6
votes
1answer
217 views
Adding curried closure as static property with expando metaclass loses default parameter value
I encountered this in both Groovy 1.8.6 and 2.0.0.
So these scenarios all work as expected:
def ay = { one, two=[:] -> [one, two] }
def be = { one, two, three=[:] -> [one,two,three] }
def ...
0
votes
1answer
1k views
Adding custom field to User programmatically through liferay.expando
I am trying to add fields to com.liferay.portal.model.User, an extra attribute using Expando. Can someone explain to me how this method is adding a field because docs don't have much description.
...
0
votes
0answers
127 views
Dynamic Kinds on app engine datastore - is this a good way?
I have a usecase where based on user/admin input from some UI - a list of fields will be generated and that will be used to define the class(Kind). In this use case the database models are not known ...
0
votes
2answers
153 views
jquery expandos
I want to add some additional properties to table rows. The table is created on the fly, from data returned from the server
The table defined on the HTML:
Then, let's ...
2
votes
1answer
212 views
Extending xhtml schema to support custom tags and attributes
I want to provide the xml schema for custom tags and attributes, which are extending xhtml, so that I would have auto suggest in the IDE (I am using WebStorm) for standard html tags and attributes and ...
0
votes
1answer
121 views
EditorForModel and DisplayForModel don't work on Expando objects
Or at least, they don't do what I was expecting. My Action method looks like this:
Function Test() As ActionResult
Dim model As Object = New ExpandoObject()
model.FieldA = 123
...
0
votes
1answer
138 views
System.Dynamic ExpandoControl is it possible?
I'm trying to figure out how to create a web server control which is basically an ExpandoObject.
The desire is to automatically create a property on the control when it is created in the aspx markup.
...
-1
votes
2answers
150 views
How to remove extended attribute “jquery123456” from element
I have one element "<a id="sample" jquery1234567="0">Testing</a>"
I want to remove the last attribute (jquery1234567) from the above tag.
But the attribute "jquery1234567" will be ...
-4
votes
1answer
77 views
If i am defining properties at a class and call the class methods using xml .is it possible to add new methods or properties at runtime
Ex : xml : <class> <method>a1</method> <class>
C# :
Class Demo
{
public string a1 { get; set;}
public void a1()
{
-----
}
...
1
vote
2answers
642 views
Objectify embedded maps fail to retrieve
I am using Objectify as a data access layer in my GoogleAppEngine hosted application.
The problem comes when I try to persist a map. My bean looks like this:
@Entity
@Cached
class MyBean{
@Id
...
4
votes
2answers
153 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?
0
votes
2answers
408 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
247 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
379 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 ...
5
votes
4answers
206 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 ...
6
votes
2answers
1k 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 ...
1
vote
2answers
574 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:
...
6
votes
1answer
2k 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 ...
0
votes
2answers
315 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
1k 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 ...
1
vote
1answer
245 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 ...
2
votes
2answers
400 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 ...
1
vote
2answers
666 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!
2
votes
1answer
483 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
...
0
votes
1answer
290 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 ...
1
vote
1answer
220 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
742 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 = ...
5
votes
1answer
2k 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" ...
5
votes
2answers
475 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 ...
3
votes
1answer
698 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 ...
0
votes
1answer
630 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 ...
3
votes
1answer
367 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 ...
4
votes
1answer
1k views
How to databind a gridview to an ExpandoObject
When I try to databind an ASP.NET GridView to an IEnumerable<ExpandoObject> using an ObjectDataSource, I get the following exception.
System.Web.HttpException (0x80004005): DataBinding: ...
2
votes
1answer
477 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?
...
4
votes
2answers
303 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 ...
1
vote
2answers
272 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?
}
...
5
votes
1answer
668 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 ...
1
vote
1answer
316 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, ...
2
votes
2answers
426 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 ...
5
votes
1answer
517 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?
2
votes
2answers
726 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 ...
0
votes
2answers
492 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 ...
3
votes
1answer
673 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):
...

