In prototype-based languages, the prototype of an object is a set of properties which is inherited by all objects which are based on this object.
1
vote
1answer
10 views
Is events.EventEmitter.call(this) required when creating a custom EventEmitter?
There are a lot of example not using events.EventEmitter.call(this) in custom event emitter constructors, while other are using it (official documentation):
var events = require('events')
, util ...
0
votes
1answer
27 views
What javascript objects have addEventlistener in their prototype?
I know of the following:
Element.prototype.addEventListener
Window.prototype.addEventListener
Document.prototype.addEventListener
Any others?
6
votes
1answer
37 views
Why is native datatype properties not shown on their corresponding prototypes?
For example, an the Array datatype has a function called pop(), which I suppose is added using:
Array.prototype.pop = function(){ /* ... */ };
But as far as I know, the only way to make it ...
0
votes
2answers
32 views
javascript prototype loop for in array
I am working on a project, which use a lot of "javascript".
I have lot of "ajax" calls, which returns always à "json" array.
For usefull reasons, I created two prototypes of Array object ("in_array" ...
3
votes
1answer
36 views
Get all variables of the current function() scope
I'm having a problem. I want to get the current function scrope. I have this example code that i'm working ok.
function nittle(){
var Pen = new Dot(); // Generated dynamical through eval()
...
0
votes
0answers
20 views
Codiqa Alternative for Mobile
With hours of searching I can't seem to come across something like this for my Android. I want to design JQuery/HTML5 mobile websites on my Android, and it's a whole lot faster and easier using a ...
1
vote
2answers
37 views
Get all elements with specific prototype?
Let's take this example:
var Point = new function(){};
var Line = function(){};
Line.prototype = new Point();
var line2 ....
I wan't to find all the entities that prototype Point. Some code I ...
0
votes
0answers
53 views
How to execute eval() code and get all the params
The Problem
I'm allowing the user to write some code in text code editor something like this eg:
var Player = function(){
this.x = 0;
this.y = 0;
this.width = 32;
this.height = 64;
...
0
votes
1answer
20 views
Javascript: access to this inside prototype
I extend an object by using prototype. Using this inside nested functions does not refer to the object that is inherited but to the function itself.
The plugin i try to extend has an implementation ...
0
votes
2answers
15 views
Spring Beans Scope - taking into account Controllers \ Services \ Repositories
I'm having 1 @Controller bean in my project
and 2 @Service beans that this controller calls.
the services using 2 different @Repository beans for persisting.
My question is :
my server is about to ...
1
vote
3answers
36 views
Check if an object has a user defined prototype?
Simply put can I check if an object has a user defined prototype?
Example;
var A = function() {};
var B = function() {};
B.prototype = {
};
// Pseudocode
A.hasUserPrototype(); // False
...
3
votes
2answers
30 views
Can you create functions with custom prototypes in JavaScript?
First of all, I don't want to add methods to Function.prototype. Doing that would make them available for all functions and that's not what I'm looking for.
In JavaScript you can create objects with ...
2
votes
2answers
34 views
Setting prototypes inside function constructor
var a = function(){
this.sayFoo = function(){
console.log('foo');
};
}
var b = function(){
console.log(this.prototype); //undefined
this.sayBar = function(){
...
0
votes
1answer
47 views
Javascript Prototype requires .prototype. Why?
I have some code as part of a javascript weekend project that I'm working on. My problem is in the last line. As far as I can tell, I should be able to just call Floater.create() and not have to call ...
0
votes
2answers
37 views
how to change the name of the '$' function on Prototype JS library?
I am using both jQuery and Prototype libraries in my application (forced to that because of 3rd party plugins).
Both libraries use the '$' as their core function.
I know how to change the $ on jQuery ...
1
vote
1answer
24 views
Is it possible to call 2nd tier prototype function?
I have an object (1) that is inherited from another object (2).
Both objects in their prototype have an _init function. Inside object 1, I would like to call object 2 _init function.
Obviously ...
2
votes
1answer
24 views
DIV object and an Overlay object, prototypal inheritance issue with html elements?
I have a very unique problem, and I am not sure as to how I should tackle it, whether there is a best way to tackle it, and/or if this is a design pattern flaw.
The reason for asking is that I ...
0
votes
2answers
52 views
Knockout ViewModel base class, Javascript inheritance
I have been using Knockout.js for a lot of projects lately, and I am writing a lot of repetitive code. I would like to be able to define a BaseViewModel class and have my page-specific ViewModels ...
3
votes
1answer
20 views
How can I use one function for different JS classes?
Assume I have two classes ClassA and ClassB:
function ClassA(){
this.x = 1;
this.y = 'a';
this.z = false;
}
-
function ClassB(){
this.x = 0;
this.y = 'b';
this.z = true;
}
...
3
votes
1answer
59 views
Is this a safe way of copying one objects prototype to another?
Say I have one object with prototypal properties that I have manually set.
An example would be
function A() {
};
A.prototype.B = function() {
};
A.prototype.C = function() {
};
A.prototype.D = ...
0
votes
0answers
42 views
How can I dispose/remove a scene in three.js created by a prototype object?
I have a prototype class object that creates my three.js scene and has dynamic meshes, material, textures, etc... that can be created with it. I want to add the ability to open and close saved scenes, ...
0
votes
2answers
26 views
Modifying a field on a prototype from a child object
This is a problem of cleanliness.
I'm using prototypes to implement basic inheritance to keep my code DRY, I have a few prototypes which are for all intents and purposes abstract (it is not expected ...
0
votes
3answers
59 views
What does the prototype “const int* foo(int)” mean,especially in contrast to “int* foo(int)”?I understand the second only [duplicate]
I know that int* foo(int) prototype means that foo is a function that takes an integer argument and returns a pointer to an integer.But what does the following mean?
const int* foo(int);
I tried ...
0
votes
2answers
46 views
Javascript Prototype reuse same method
I have this JS file
function APIAccess(){
this.LoadScreen = function(){
var loadScreen = $('#loadScreen');
if(loadScreen.html() == undefined){
loadScreen = '<div ...
1
vote
3answers
82 views
How to call function(s) of objects undefined in the object?
I have this code for an image
var img = {
id: id++,
link: m.attr("index"),
x: m.offsetx(),
y: m.offsety(),
width: m.width(),
height: m.height()
};
Now I would like to call a ...
4
votes
1answer
38 views
Canvas object and multiple instances inside another object?
I have a canvas object that I can call like so
var canvas = new Canvas();
The canvas object also has alot of functions in its prototype. The object essentially creates a canvas element, with a few ...
0
votes
1answer
9 views
override really easy field validation
I use really-easy-field-validation for prototype plugin.
In my form I have 2 buttons, and I need to validate only when "Send" is hit, but when the 2nd button - "Save" is hit, I want the form to be ...
1
vote
3answers
41 views
dynamic max-height with js in firefox
I cannot alter the max-height value of a div in javascript. Can anyone give me any hints. It works in chrome, safari, and IE but not in firefox. Is there any way to get it to work in FF?
...
0
votes
3answers
45 views
Error returning an object attribute in JS
function Objecte(name){
this.name=name;
}
Objecte.prototype.look=function(){
return function(){
alert(this.name);
};
}
I'm trying to access the Object's attribute but when ...
1
vote
1answer
30 views
JQuery and prototype namespace
Hello i just starting to get into JQuery plugins, but i am having some problems understanding the namespace.
Given the example below, when i enter the "submit" function, how do i get prototype ...
0
votes
4answers
41 views
How might I be able to use Array.prototype.forEach on an object?
I'm just trying to make a little framework for learning purposes, and I want to be able to use Array.prototype.forEach on objects, this is what I have right now,
var data = { test: 'test' };
...
5
votes
3answers
84 views
prototype: deep scope of “this” to access instance's scope
How can the the top-most scope can be cached in order to be used deeper in the prototype later, like so:
var Game = function(id){
this.id = id;
};
Game.prototype = {
board : {
init: ...
2
votes
1answer
33 views
Issues with Jasmine's spyOn toHaveBeenCalled on a prototypal method
My example of spying on a method is failing with "Expected spy handle_click to have been called." when it should pass. However, I am getting the console log "Foo handle_click called!", so I know it's ...
0
votes
1answer
26 views
JS Prototype for PhoneGap?
I'm trying to write an app in PhoneGap with JS. I just started and the first thing I need to do is make a wrapper class for my maps to handle some additional functionality. I'm familiar with js ...
3
votes
1answer
78 views
why object prototype shows up as html attribute?
I did this (using version mootools-core-1.4.5.js)
Object.prototype.walkRecursive = function(callable, bindable) {
var p, val, retVal, _bind;
_bind = (typeof bindable === 'object') ? bindable : this;
...
6
votes
1answer
96 views
symfony2 multiple nested forms prototype
I want to include a collection type inside another collection type.
It should look like this:
Using just one collection works fine, but I need to edit the prototype of the outer form, so it renders ...
2
votes
3answers
54 views
Removing divs on page with attribute display:none via Javascript
There is a plug in that generates some divs on the page and when they are viewed it makes them display:none but all these pile up too much. How can I remove them via Javascript?
<div ...
-1
votes
3answers
44 views
Implications of Factory Method implementations [closed]
First, this is strictly a C# question! Please restrict your knowledge to C# for this one.
In an app I am working on, we have some classes that we provide preset 'prototypes' for. At a very high ...
0
votes
4answers
57 views
javascript - combining two constructors
I'm trying to extend one constructor with another, using prototype:
var objA = function(name){
var obj = this;
this.test.name = name;
window.setTimeout(function(){
...
0
votes
0answers
24 views
Alternative to csv delimited elements in prototype
Is there another away to append a bunch of elements together in array besides the following
var qtys = $$('#super-product-table .qty, #super-product-table-1 .qty, #super-product-table-2 .qty');
I ...
4
votes
4answers
72 views
How can I create a constructor for a static library
I'm using the introjs library.
See the original code here.
I want to be able to write var = new IntroJs() rather than call the start() method.
How can I achieve that?
1
vote
2answers
46 views
PHP interaction with AJAX
So I have this function in my javascript file:
function UpdateThisCourseHistory(){
var ajax= new Ajax.Request("runNeededQueries.php",
{
method: "POST",
...
2
votes
2answers
45 views
Why people use prototype in javascript when it is easy to inherit using apply () and call () methods?
Shape is inherited by rectangle. This inheritance can be done by many methods. Here I have used apply() and call (). When draw method is child is called, from that method draw method of base class is ...
0
votes
1answer
22 views
Loading contents dynamically
I have product listing page, which displays all the products which satisfy the search criteria. And these could be any number of products.
What I want is something like FB, that I display only first ...
0
votes
1answer
26 views
How to create angular models from same prototype without binding?
I have a small issue. I have an object which I want to use to create two angular models without binding, based on initial object as prototype:
var def = {
value: 'example'
}
in Angular:
var c = ...
0
votes
3answers
37 views
What is more effiencent or a better practice, creating a regular function or prototype function?
What is better practice for creating functions?
For example if I want to shuffle an array, is it a better application to just create a regular function or prototype function? Are there ...
-1
votes
2answers
58 views
magento prototype issue [closed]
I am not a Magento developer but I was asked to fix an issue with a Magento site. I don't know what I'm doing with Magento, so I was hoping someone here could point me in the right direction.
The ...
0
votes
0answers
11 views
Prototype AJAX request changing the URL unwanted
I'm sending a post request using AJAX prototype in JS to a PHP file that handles database queries.
The URL passed to the AJAX request is:
...
1
vote
1answer
17 views
Prototype function polluting JavaScript array
I'm working with an API that can accept multiple arrays in which I'm using apply() to pass the arrays, but the array contains a prototype function that I cannot seem to remove from the individual ...
0
votes
0answers
35 views
twitter-bootstrap code - what is this used for?
In the hide method of both the bootstrap modal and bootstrap tooltips,
there are the statements:
e = $.Event('hide');
this.$element.trigger(e);
and then after that it has code to do the actual ...




