The tag has no wiki summary.

learn more… | top users | synonyms

45
votes
6answers
20k views

Rails extending ActiveRecord::Base

I've done some reading about how to extend ActiveRecord:Base class so my models would have some special methods. What is the easy way to extend it (step by step tutorial). Thx!
25
votes
4answers
15k views

Best Way to Extend a jQuery Plugin

I'm a fairly new jQuery user looking to extend an existing jQuery plugin that does about 75% of what I need. I've tried to do my homework on this. I've checked out the following questions on ...
72
votes
4answers
10k views

What is the difference between include and extend in Ruby?

Just getting my head around Ruby metaprogramming... the mixin/modules always manage to confuse me. include : mixes in specified module methods as instance methods in the target class extend : mixes ...
1
vote
1answer
228 views

Issue on extending functionality on a simple jQuery plugin ?

This test plugin, is supposed to work like this: When an element is clicked, it moves down. Simple as that. jQuery.fn.moveDown = function(howMuch){ $(this).css("border", "1px solid black"); ...
2
votes
3answers
876 views

how to force schema compiled classes to extend specific class outside schema

Need help with following situation: Users can generate their own data structures which are stored as JAXB-ready XSD sources like below: <xs:schema version="1.0" ...
163
votes
9answers
116k views

Python - append vs. extend

What is the difference between the list methods append and extend?
35
votes
4answers
22k views

Difference between jQuery.extend and jQuery.fn.extend?

I am trying to understand the jquery plugin syntax, because I want to merge two plugins into one. The blinker that also needs to be able to stop de interval or run a number of times. Anyway, is this ...
13
votes
1answer
5k views

Extending an existing jQuery function

I am trying to write a plugin that will extend an existing function in jQuery, e.g. (function($) { $.fn.css = function() { // stuff I will be extending // that doesn't ...
5
votes
3answers
4k views

Adding the same context menu to multiple activities

I'm trying to figure out how to include common pieces of code in multiple activities. More specifically, I have a context menu that I would like to include in several activities. I saw this, but just ...
5
votes
5answers
224 views

Strange syntax of Number methods in JavaScript

Take a look at the following code: Number.prototype.isIn = function () { for (var i = 0, j = arguments.length; i < j; ++i) { if (parseInt(this, 10) === arguments[i]) { return true; ...
16
votes
6answers
20k views

Better way to call superclass method in ExtJS

All the ExtJS documentation and examples I have read suggest calling superclass methods like this: MyApp.MyPanel = Ext.extend(Ext.Panel, { initComponent: function() { // do something MyPanel ...
6
votes
1answer
2k views

Extend Magento's EAV Attribute Model

I would like to add a new attribute to Magento's EAV attribute model. Is this possible? I know that Magento lets you extend models using static fields (which are on the entity table), but I would ...
11
votes
3answers
8k views

Syntax to insert one list into another list in python [closed]

What is the syntax to insert one list into another list in python?
5
votes
3answers
2k views

Extending a Scala collection

I want a Map that throws on attempt to overwrite a value for existing key. I tried: trait Unoverwriteable[A, B] extends scala.collection.Map[A, B] { case class KeyAlreadyExistsException(e: ...
4
votes
2answers
1k 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 ...
4
votes
3answers
4k views

Extending or adding new classes at runtime in Java

Is there a way to add (or extend existing) classes at runtime in java. I'm stuck on a problem, in which I have to extend an existing class at runtime and add this to the classpath, so that this new ...
4
votes
3answers
3k views

Can I extend lisp with c++?

Can I call a function from lisp from a library written in c or c++? How can I extend lisp? This is useful when you want to do some system calls or stuff like that.
6
votes
2answers
493 views

Can I extend the console object (for rerouting the logging) in javascript?

Is it possible to extend the console object? I tried something like: Console.prototype.log = function(msg){ Console.prototype.log.call(msg); alert(msg); } But this didn't work. I want to ...
2
votes
3answers
187 views

Python list extension and variable assignment

I tried to extend a list and was puzzled by having the result return with the value None. What I tried was this: >>> a = [1,2] >>> b = [3,4] >>> a = a.extend(b) ...
2
votes
5answers
797 views

How do I extend an NSArray?

Here's my try: H file: @interface Strings : NSArray @end M file: @implementation Strings - (id) init { [self initWithObjects: @"One.", nil]; return self; } @end When I run I ...
0
votes
2answers
8k views

Extending Application

I'd like to extend Application in my Android app. I've done this such that I've created an extended Application object called MyApplication and added it to the manifest. I'd now like to add some ...
8
votes
3answers
7k views

Private members when extending a class using ExtJS

I have done some research on the ExtJS forum regarding private methods and fields inside a extended class, and I couldn't find any real answer to this. And when I say an extended class I mean ...
7
votes
8answers
10k views

Can you extend ArrayList in Java?

Is it possible to make a child class that extends ArrayList? If so, how?
8
votes
2answers
709 views

Merge JS objects without overwriting

Suppose you have two objects: var foo = { a : 1, b : 2 }; var bar = { a : 3, b : 4 } What's the best way to merge them (and allow deep merging) to create this: var foobar = { ...
11
votes
6answers
7k views

deep extend (like jQuery's) for nodeJS

I am struggling with deep copies of objects in nodeJS. my own extend is crap. underscore's extend is flat. there are rather simple extend variants here on stackexchange, but none are even close to ...
7
votes
3answers
520 views

Package name alias or nickname

Is it possible to create a nickname for a package name, that I can refer in xml file? I don't want to write the whole package name e.g. com.example.go.deck.today instead can I create an alias and ...
4
votes
1answer
944 views

Extending Magento Shopping Cart

I need to extend the Magento shopping cart to include an extra step for a store locator. I understand that I need to overwrite the core OnePage controller (Mage_Checkout_OnepageController) and blocks ...
4
votes
2answers
3k views

Django Override Admin change_form.html Template - display associated model in template

I have a situation where I've overrided the admin_change.html template for a given model. I've created a file such as: /myproject/templates/admin/myapp/mymodel/change_form.html Then, in the ...
2
votes
1answer
789 views

Extending Magento REST API

I could not find anything on the internet, so I hope someone here has an awnser to my question. Is it possible to extend the REST API for Magento and if so, does someone have an example or guide on ...
1
vote
4answers
4k views

Element.prototype in IE7?

I'm trying to extend all dom elements so i can get and remove their children. The function is below (works in FF and Chrome). Is there an equivalent in IE7 to extend the base dom object? if ...
6
votes
2answers
289 views

Make DateTime::createFromFormat() return child class instead of parent

I'm extending DateTime do add some useful methods and constants. When using new to create a new object everything is fine but when using the static method createFromFormat it always returns the ...
5
votes
1answer
89 views

Overriding a function without removing static properties

If I have a function like this: function a() { console.log('a'); } and then assign a static property like this: a.static = 'foo'; But say I want to override the function with another ...
5
votes
5answers
487 views

Re-Inventing The Label Control

I need to reinvent/recreate the Label Control from scratch to add my own mojoness to it. Yes, I know what you're thinking (and if you're not thinking that, shouldn't you be?). Can somebody point me ...
4
votes
3answers
547 views

Is it possible to extend Eclipse Search Menu

right now in eclipse it is not possible to extend Menu defined by Other plugins by using eclipse extension: org.eclipse.ui.menus. I want to add one menu item in Search but not a search page. since ...
4
votes
1answer
1k views

How to extend ImageButton correctly?

I want to extend the functionality of the ImageButton class, in a new class I choose to call "DialButton". To start off, I simpy extend ImageButton, and added nothing new. In my mind, this should be ...
1
vote
2answers
725 views

extend/inherit from 2 classes in Java

I've read up on this topic and it seems my best option is to make one of the classes that I want to extend into an interface.. The thing is that ParentA is a class from the Android API, so I can't ...
1
vote
2answers
864 views

Configurable Values in Enum

I often use this design in my code to maintain configurable values. Consider this code: public enum Options { REGEX_STRING("Some Regex"), ...
0
votes
2answers
114 views

Extend a Div the Length of it's Container

I am trying to extend my left sidebar so that it spans the length of the page (or the container DIV). I tried setting the height of the container to 100% and then the height of the sidebar to 100%, ...
0
votes
1answer
97 views

Find 4 values in window size 6 that fit criteria then Add to list until 3 do not fit criteria not include last 3 -> Repeat next window . Python

if you have a list of values: values=['130','90','150','123','133','120','160', '45','67', '55','34','130','120','180','130','10'] and wanted to scan through with a window size of 6 ...
0
votes
3answers
530 views

Can you extend the val() function in jQuery?

Is there a way to extend the val() function in jQuery. Basically, what I want to do is set a class variable if there is content being dynamically entered into an input. Whick normally would be ...
0
votes
1answer
3k views

jQuery: extend plugin question

i'm having this simple plugin code: (function ($) { $.fn.tWeb = function () { var me = this; me.var1 = "foo"; this.done = function() { return this; } return ...
8
votes
2answers
14k views

My control is “not allowed here because it does not extend class 'System.Web.UI.UserControl'”

So I have another noodle-scratcher (for me anyway). I'm trying to create my own custom control in a CMS I only have partial source code for (i.e. samples the vendor has supplied to me). Basically I ...
5
votes
1answer
2k views

Java Swing: Extend DefaultComboBoxModel and override methods

I am using the DefaultComboBoxModel to display a list of customers in a ComboBox. The list currently displays their name only. I would also like to have a reference to each customer within the ...
4
votes
1answer
685 views

Creating a Custom Subclass of ColorFilter?

Okay, so this is somewhat related to my previous question on the ColorMatrixColorFilter, but I feel it's a significantly different question. I'm wondering if there's a way - or rather, how to extend ...
4
votes
4answers
11k 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 ...
3
votes
2answers
628 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 ...
3
votes
6answers
256 views

What's the rule of thumb regarding Swing component extension?

When dedicating a class to a particular Swing component, is it better to extend that particular component, or construct it internally and provide a reference? public class Foo extends JComponent{ } ...
2
votes
1answer
64 views

Extend a JavaScript object by passing a string with the path and a value

Is there an easy way to extend a JavaScript object by passing a string and a value? Basically I need something like this: myObject = {} var extendObj = function(obj, path, value){ } var path = ...
2
votes
1answer
182 views

Scala, Extend object with a generic trait

I'm using Scala and I want to extend a (singleton) object with a trait, which delivers a data structure and some methods, like this: trait Tray[T] { val tray = ListBuffer.empty[T] def add[T] (t: ...
1
vote
1answer
56 views

add step to OPC without overriding

after reading this tweet from Ivan Chepurnyi and having to add a step to the OnePage Checkout (aka OPC) for a client's site, I thaught it was the perfect occasion to learn something new. I am a big ...

1 2