Keyword that refers to the current class instance / object in most object-oriented programming languages.
1
vote
1answer
42 views
Global Variable with $(this)
I am trying to make the coding a lot easier for me and so I assigned a global.
var parent = $(this).parent().parent().parent();
var parentModule = $(this).parent().parent().parent().parent();
And I ...
0
votes
1answer
28 views
Confused about “Using $this when not in object context” fatal error
I searched around on stackoverflow about the "Using $this when not in object context" but I could't get my answer out of it so I ask it here.
I will just copy my code here so you and me dont get ...
5
votes
3answers
56 views
Extending inheritance of `this` to methods / properties of an `object`
I'm not sure if I phrased the question title correctly; please consider the following to clarify...
(function() {
var foo = {
bar: function() {
// Is it possible to reference ...
1
vote
1answer
25 views
How does “use strict” modify the rules for “this” in Javascript?
I'm trying to understand what rule for "this" that "use strict"; modifies in the below case.
After reading (http://unschooled.org/2012/03/understanding-javascript-this/) my best guess is that since ...
1
vote
1answer
43 views
Typescript: private member is suddenly undefined
So, I've got a basic Typescript application, that shouldn't actually cause any major problems, but it seems, that something's going wrong here and I have no idea what.
I do have this private member ...
0
votes
3answers
32 views
how to access all the row data when sending this
Let's say I have something like this:
<table>
<tr>
<th>ID</th>
<th>Name</th>
<th>Lastname</th>
<th>Options</th>
</tr>
...
0
votes
3answers
57 views
Java generics: Use this type as return type?
I'm trying to make an API as user friendly as possible.
Let's have:
class B extends A {}
class A {
A setX(){ ...; return this; }
}
Now this
B b = new B().setX();
is invalid, has to be ...
0
votes
3answers
27 views
How to get the correct “this” element when using jQuery on() with two selectors
Consider the following code:
$('#main').on('click', 'a', function() {
console.log($(this));
});
$(this) will always correspond to the #main element and not to the <a> clicked. How can I ...
1
vote
1answer
37 views
Why this function is attached to global context
When I use var keyword to declare any variable it gets declared inside the enclosing scope. However in the code below, I have declared function c (inside an object method a.b) with var keyword and ...
0
votes
2answers
71 views
How would I have the 'this' keyword in a setTimeout parameter? [duplicate]
I have the following code with the purpose of making each .feedcontain div fade in after an increasing delay. The animation and formatting is perfect, its just that I can't have a this keyword in the ...
2
votes
2answers
27 views
How to reference proprerty from sub objects with “this” keyword
i have to call a property in "object1" from sub object "object3", but this example doesn't work because the "this" keyword is referenced in "object2" and not "object1", do you know how to do this ?
...
0
votes
1answer
17 views
Unexpected value for 'this' in express.js instantiated controllers
'this' does not appear to refer to the instantiated budget controller object. Instead it seems to refer to the global object. Does anyone know why this is?
I've defined a budget model. Injected into ...
0
votes
1answer
33 views
Any other option besides using a this object
I'm create a timer job in sharepoint and have made it quite far. I am running into the issue of having a "this" object in a static method. Here is my code. If anyone has any suggestions, that would be ...
0
votes
0answers
7 views
Pass this as argument to a event handler in javascript
In my project, i see a piece of extjs 3.4 code like this:
this.mon(parentform, EVENT_NAME,
this.functionName, `this`);
My question is with the last argument this. If we don't pass anything, the ...
0
votes
2answers
41 views
specific element in `this` with jquery
So in jquery, if I want to target a div in the .test class on a click I use the following code:
$('.test div').click(function(){
//do something
});
But if the "do something" part requires a ...
0
votes
3answers
27 views
javascript object literal - nested functions and the “this” keyword
In the example below, when functionA() is invoked, the this keyword refers to the containing object, so I can access its properties (e.g. theValue)
My question: How do I refer to properties of myObj ...
2
votes
2answers
96 views
Strange this-> behaviour
So i have the following class
class Community
{
private:
char* Name;
char foundationDate[11];
Person* founder;
int maxMembersCount;
int membersCount;
Person* members;
static int ...
0
votes
2answers
38 views
this keyword in javascript class functions [closed]
I have one base javascript class which I would like to extend as needed (in different .js file). Consider next example:
// file 1
function BaseExtandableClass (){
// this.x = some value
...
4
votes
2answers
34 views
What is the simplest way to get the object a function is a method of with prototypes, now and later?
In JavaScript, if I have:
var foo = function(){}
foo.prototype.bar = function() {
console.log(this);
}
baz = new foo();
baz.name = 'baz';
bing = new foo();
bing.name = 'bing';
baz.bar();
...
3
votes
2answers
32 views
Why nested local function binds `this` to window instead of the parent
I was reading some documentation about javascript and stumbled upon the following code example:
var o = {
value: 1,
outer: function () {
var inner = function () {
console.log(this); ...
0
votes
2answers
40 views
deleting object in member function inside class
Im developing a game and I have a tree class. The class has an int called "wood" which keeps the amount of wood left in the tree. There is also a function to keep track of all events. When the value ...
0
votes
3answers
43 views
Scope Error in Javascript. Calling a method within a different method of that object
I've got a variable timekeep.
var timeKeep;
and I define it thusly:
timeKeep = Class.create({
initialize: function() {
this.initObservers();
},
initObservers: function() {
...
0
votes
0answers
35 views
A more specific $(this) selector?
I am trying to create a navigation bar that will list the more specific items under its category as i hover over the menu item and I have created the css styling for each list for each menu item. ...
2
votes
2answers
70 views
C++ non class scope replacement for this.x = x;
In C++ I can do this in classes:
class MyClass {
public:
int number;
void SetNumber(int number);
};
void MyClass::SetNumber(int number)
{
this->number = number;
}
But ...
0
votes
4answers
30 views
Should I be using “this” or “event.target” in javascript?
I have created a simple div demonstration below, that will display none once click.
<div id="three" onclick="toggle2(event);return false;" style="background:#303; color:#FFF;">
function ...
2
votes
1answer
50 views
Typescript this being overriden by jquery hover
When you use a jquery hover binding like $(".element").hover(functionHoverIn,functionHoverOut), jquery seems to pass the element that was hovered as this. Like so:
$('.element').hover(function(e) {
...
0
votes
4answers
19 views
Correct syntax for $(this label) jQuery
I want to write something for each class select this label and do not display it.
$('.no_show_on_form').each(function()
{
$(this label).css('display','none');
});
It actually return ...
2
votes
1answer
88 views
JavaScript- this value
I see some code like this from jqplot library:
$.jqplot.Dragable = function(options) {
// a bunch of code here.
$.extend(true, this, options);
};
This is a routine to add new plugin to the ...
0
votes
5answers
62 views
C++ pass by reference and this object
Why is answer "OK"?
class CTest {
public:
int isitme(CTest& cobj);
};
int CTest::isitme(CTest &cobj)
{
if(&cobj == this)
{
return true;
}
else
{
...
1
vote
1answer
62 views
“this” does not refer to what I want
In one of my classes, a method performs AJAX requests. In the callback function of a request, I need to call another method of my object, using this. But this does not refer to my object in this ...
1
vote
2answers
58 views
Inner class and this() constructor
I have 2 classes: Date and Person
Person has two attributes of Date class
Case 1
Date class is separate class from Person class. I have this piece of code working properly:
private String name;
...
1
vote
1answer
49 views
“this” is referring to an object that is not in fact the one that is using “this”
While debugging, my program crashed with an error stating that there was a null reference. The weird thing was that on the line that it had crashed on, it is running a method in a different static ...
6
votes
2answers
38 views
Difference between $.proxy, bind, call, apply
The old way:
var self = this;
setTimeout(function(){
console.log(self);
}, 5000);
With jQuery:
setTimeout($.proxy(function(){
console.log(this);
}, this), 5000);
With bind:
...
0
votes
1answer
59 views
Could someone explain the keyword “this” to me? [duplicate]
I'm able to learn and pick up things very fast, but this is still confusing me:
This is in the main class (DCFlags):
private WGCustomFlagsPlugin pluginWGCustomFlags;
private WorldGuardPlugin ...
2
votes
3answers
49 views
forced by jQuery to keep reference of “this” in Backbone views
Most of the functions in my backbone.js views start with var that = this; because inside some of the jQuery helper functions this doesn't refer to the backbone view any more. See lines 08 and 14 in ...
2
votes
3answers
53 views
Difference between $this->return and return
I recently came across this code in a Joomla component(Kunena, more precisely), so what is the difference between using $this->return VS simple return statement.
I already google the code, but no ...
0
votes
3answers
34 views
select specific img using this selector
I have a problem using this slector.
I have a couple of divs with pictures in them. And i applied a class to the pictures to make them gray-scale and when i hover the link i would like them to remove ...
-1
votes
1answer
24 views
My jQuery script makes always the first <select> look like focused when not
Thing is, no matter which <select> I'm clicking, it always looks like the first one gets focused when actually the second one isn't.
The code works, but I want to implement the $(this) thing so ...
0
votes
1answer
30 views
PHP inheritance weird use of $this operator
I have one little question. On PHP manual site there is one example:
class Bar
{
public function test() {
$this->testPrivate();
$this->testPublic();
}
public ...
0
votes
2answers
25 views
this .find() not working with jQuery slideToggle
I have the following code at jsFiddle http://jsfiddle.net/3fp4Q/8/ and can't seam to get it to work. I want the list of books and socks to be displayed (toggled) when the Title is clicked.
Any help ...
0
votes
3answers
47 views
javascript - “this” is undefined when method is bound to event listener
I already tried to understand what the this keyword refers to by reading about it. well, that didn't help. so please help me on this one!
where is the difference between the manual function call and ...
1
vote
2answers
35 views
what is the use of this handler while writing android code?
Here in the below code a songsManager object is created and then why is this.songsList used to store the song files and why not only songsList is used. Main question is what is the use of this and ...
0
votes
0answers
15 views
nested master pages issue
I have nested master pages in asp.net. from one page when I access the MasterPage's Masterpage it access it nicely but when I access the the same master page from other page it generates error.
...
1
vote
2answers
51 views
How to use “this” on inner div from parent
I have a quick web program which when you hover over another image, a small box pops up underneath.
I set up a quick function like so:
$('.indArtistBox').hover(function(){
...
0
votes
4answers
52 views
Why are these “this” and “that” variables both undefined?
Why in the below code are both:
this.fadeTime
that.fadeTime
undefined, and what is the best way to save internal variables like this in a Javascript class?
var SITE = SITE || {};
SITE.initialize = ...
0
votes
2answers
78 views
JavaScript - 'this.form' returns undefined
I am trying to change the functionality of a part of my website.
Currently, I have a Validate button that is outside of my table. Whenever the user clicks on that button, the Validation occurs.
...
1
vote
1answer
24 views
Binding of this when constructor is not called in javascript
This code is a part of a constructor function body in javascript:
window.addEventListener("load", function(){
this._updateFilter();
}.bind(this));
_updateFilter method belongs to prototype ...
0
votes
1answer
24 views
jQuery extract url and place into .load()
I'm trying to load external php into a div on click, works fine like this:
$('.tab1').click(function(){
$('#place').hide(500, function(){
$('#place').load('example1.inc', function(){
...
0
votes
2answers
48 views
jQuery next() with $(this)
I have a form with repeating sets of elements.
When a select with class credit_req_select changes I want to show/hide and possibly clear only the next text input with class credit_line_text.
The ...
0
votes
7answers
76 views
this keyword and static [duplicate]
I knew that we can not use this keyword in a static method, But I got confused why we can not use this inside static blocks orstatic methods. Even the same case with super(). Could anyone shed light ...




