0
votes
1answer
40 views

Extend Kinetc.Shape and all derived shapes

I want to extend the object Kinetic.Shape (from which every other shape extends) with some more properties and methods. What I tried was Kinetic.Util.addMethods(Kinetic.Shape, { foo: 'bar' }); ...
3
votes
2answers
42 views

powershell extend an object

How can I add a column to an object in PowerShell? For example, the Get-Childitem returns an object, with Mode, LastWriteTime, Length Name, etc.... And I want to extend this object with an extra ...
1
vote
4answers
57 views

Objects and casting java

I was given this statement for homework. Mammal pet = new Dog (); Samoyed s = pet; we were given a diagram like so: Animal ---> Vertebrate ---> Mammal ---> Dog ---> Husky, Samoyed, Beagle my ...
0
votes
1answer
107 views

jquery fn.extend() returning values and call values in object

I need some help in understanding something, that propably is easy for serious jquery and javascript programmers. Lets say I have a code like this: jQuery.fn.extend({ myNameSpace: { ...
1
vote
5answers
46 views

jquery: extend method with two objects - result is object Object?

I'm doing some jQuery tutorial at jQuery.com and try to understand the extend method right now. it works ALMOST. var object1 = { apple: 0, banana: {weight: 52, price: ...
0
votes
2answers
61 views

Js: Adding nested object literal items — can't figure it out

Here is my code: Cart = { items: { id1: { cost: 55 }, id3: { cost: 20 }, id2: { cost: 15 } }, blah blah blah } Now I want to add values to Cart.items with ...
0
votes
0answers
66 views

Javascript Library Extend way

I'm writing my own JavaScript library. How can I do for extend my object in this way? _.mymethod(); Here's my code: (function (window, undefined) { "use strict"; var emptyArray = []; ...
2
votes
2answers
87 views

Javascript Object custom functions [duplicate]

Possible Duplicate: Javascript closure inside loops - simple practical example Javascript infamous Loop problem? I have a base function, that I want to control what ends up being like a ...
0
votes
2answers
639 views

Nested object extend and skipping undefined properties (in Angular or Underscore)

Is there any implementation (or pattern) on how to handle the following extend cases? AFAIK there's no way to do it straightforward neither in Angular or Underscore, is that right? Otherwise here's ...
1
vote
2answers
85 views

Clone and extend object in jQuery?

Ok, so here is the basics of what I want to do: var Hi = function(name){ this.name = name; }; Hi.prototype = { message: function(){ $('body').append('Hi '+this.name); } }; var ...
0
votes
3answers
125 views

Can JQuery $.extend be used with indexing?

I am trying to extend an Object of the following structure (with JQuery in Coffeescript): objectThatIsAList = { 'List Item' : callback :=> return "Some value" 'Another ...
3
votes
2answers
654 views

TypeScript extend object in module

What I want to do is really similar to this and this except I'm trying to figure out how to put an ArrayExtension inside a module. I'm trying to get something similar to the way C# extension methods ...
0
votes
2answers
187 views

Replacing object's properties with properties from another object in JavaScript, without libraries

I've been using jQuery.extend to replace default properties like this var Car = function(options){ var defaultOptions = { color: "hotpink", seats: { material: "fur", ...
5
votes
2answers
2k views

JavaScript equivalent of jQuery's extend method [duplicate]

Possible Duplicate: How can I merge properties of two JavaScript objects dynamically? Background I have a function that takes a config object as an argument. Within the function, I also ...
1
vote
0answers
133 views

JQuery extend custom object with parameters

there might be an easier way to achieve what i'm trying to do and i don't think i completely understand $.extend() function, but here i am seeking for an advise: i have this custom grid object ...
2
votes
3answers
73 views

How to tell what an object extends externally in java

Hello I need to know if there is a way to find out what an object extends in Java. public void function(Obj obj) { // ... Is there a way to find out what obj extends? or if it extends anything? ...
0
votes
2answers
118 views

Can I place extended objects in a list in java along with the object it extended from?

So I have two objects A & B, and B extends A. Is it possible to have both objects in the same ArrayList? Or what will I have to do to be able to do this?
1
vote
2answers
760 views

how does jquery extend() with multiple objects work?

I am trying to modify a plugin and am pulling my hair out trying to understand how extend() is working... If I have this: $.extend( plugin.ext.oStdClasses, { "some":"one" }, $.extend( ...
3
votes
4answers
394 views

Is jQuery´s extend creating a reference between the objects?

I am extending shat with shot. After extending, why does modifying shot alter shat? var shat = [{bang:true}, {bumm: false}, {bong: false}] var shot = [{bang:false}, {bumm: false}, {bong: false}] ...
4
votes
2answers
360 views

javascript cloning a “class” instance

I have a class that goes like this. function Element(){ this.changes = {}; } Now I have an instance of this "Class" like so, el = new Element(). These instances are stored in an array, like ...
0
votes
2answers
188 views

How do I extend a subclass in ruby?

I have a class defined in a gem by Diff::LCS and I want to add some methods to it, so I figured I would extend it. Now, I've extended object before just by defining: class Object in object.rb (in ...
2
votes
1answer
160 views

how to add function to an object in javascript that can access its variables

I am trying to do some javascript test driven development, and would like to replace a dao with a mock one. Lets say I have an object myObject that has a private var dao that I would like to create a ...
2
votes
1answer
333 views

Extend class methods in PHP

I am doing a custom CMS and I have built my base content class like this: class Content { public $title; public $description; public $id; static function save() { $q = "[INSERT THE ...
0
votes
1answer
161 views

$.extend method with jquery bbq

I define my routes object (jq bbq) and in some cases i have to add some new/additional to the already existing routes object with $.extend(this.route, routeArray); Is there a simple way to remove ...
0
votes
2answers
59 views

How do you extend collection(?) to include second, third, etc. functions in Rails?

Pretty self explanatory. I use array_name.first to get the first element. How do you extend it to get second, third, random, etc? Thanks.
1
vote
1answer
156 views

extending Object.prototype.myNewMethod over all my Node application

I've just started at NodeJs so I am not familiar whether this is a good practice or not, sorry :( I have my Object implementation which add a merge method to all objects I create so I can merge to ...
4
votes
2answers
1k views

jQuery deep copy with Ext JS?

I've tried and surprised how could not I do with ExtJS. Let me explain with a code block. In jQuery console.clear(); var a = { b: 5, c: 4, o: { l: 2, p: 2 } } var b ...
4
votes
1answer
2k views

How do I extend a json object with jquery extend?

var dataset = {"read_data":[{"date":"2010\/11\/02 03:30:05","value":"2"}, {"date":"2010\/11\/02 03:30:06","value":"1"}]}; var append = ...
4
votes
4answers
12k views

Add properties to stdClass object from another object

I would like to be able to do the following: $obj = new stdClass; $obj->status = "success"; $obj2 = new stdClass; $obj2->message = "OK"; How can I extend $obj so that it contains the ...
4
votes
4answers
2k views

jquery .serializeArray(); add another value on top for passing to ajax

im doing following var data = $(form).serializeArray(); // now i want to add another value on this data data.username = 'this is username'; i want to know how can i add another value after doing ...
1
vote
3answers
1k views

Extending ruby object; extend_object callback prevents instance methods from being extended

Having some trouble extending an object instance with a module, specifically when I define an extend_object callback in the Module class. My understanding is that when you do something like: (s = ...