Keyword that refers to the current class instance / object in most object-oriented programming languages.
0
votes
1answer
17 views
Animate $this.children with Jquery
Ive been trying to animate a div (button) within another div (panel), however im failing to get any result from this code - im very new to jquery and indeed web design so please point out if ive made ...
0
votes
2answers
34 views
Why declare properties on the prototype for instance variables in JavaScript
I'm trying to get my head around this black art called JavaScript - and, I must admit, pretty excited about it. I've been looking at code examples, mainly from easeljs since that is what I will be ...
2
votes
2answers
36 views
Can I set a local var to 'this' to reference it inside an anonymous callback function?
I would like to reference 'this' in a callback function, but there is no guarantee that 'this' will refer to the correct object. Is it appropriate to create a local variable referencing 'this' and use ...
0
votes
1answer
39 views
Backbone/javascript - confused by 'this' keyword
In the following backbone scripts, I tried to change a collection in a view click event.
var StudentView = Backbone.View.extend({
initialize: function() {
console.log("create student ...
0
votes
5answers
93 views
Why can't we create an object with the “this” keyword in java? [closed]
I've seen places where object creation factories are implemented by having a reference to the class object and having a create method which does this:class.newInstance(), which uses reflection, and ...
1
vote
5answers
44 views
Jquery Probably me misunderstanding the this selector
I'm trying to get this line of code working.
$(".selectnumber").text($(this).parent().find('select').children(':selected').text());
It just wants to take the text value of the select and put it in ...
0
votes
3answers
43 views
Jquery each replace innerHtml
Jquery
I am trying to change the inner text on multiple td element which I believe should look something like this although this does not appear to be a jquery object when I am debugging (I could be ...
0
votes
1answer
43 views
Error: “Uncompilable source code”
I am in the preliminary stages and can't seem to get the program to run regardless of what I try. I think the issue has something to do with how I am calling the keyword "this" but I can't be sure.
...
3
votes
2answers
61 views
Why does a JavaScript var filled with 'this' change when 'this' changes?
function Class () {
var self = this;
this.hi = true; // this { hi: true }, self { hi: true }
self.hi = false; // this { hi: false }, self { hi: false }
}
Why doesn't self behave like a normal var?
...
0
votes
1answer
14 views
Calling jQuery's ready() with plugin context
My plugin allows you to specify a callback in its options. The plugin may run before the DOM is ready, but I need to make sure the callback only runs once the DOM is ready, so I'm wrapping the ...
0
votes
1answer
29 views
jquery closure ajax call, $(this) is null
I'm new to jquery, so this might seems simple but i can't see the trick :p
I'm using jquery 1.2.6 ( and i can't upgrade it :/ ) that's why I'm using the livequery plugin.
The context is just an ...
0
votes
1answer
11 views
Maintaining this context when linking a function to an event
I have a set of functions that are contained within:
var main = {
func1: function() {
...
},
func2: function() {
...
}
}
After the code, I have this line:
...
4
votes
4answers
117 views
Does the C++ compiler generate “this” pointer for all member methods, or only for those who reference members?
Does the C++ compiler generate the hidden "this" pointer for all member methods, or only for those who reference members?
1
vote
2answers
21 views
Trouble with Jquery for each and $(this), I can't reference one element
I am currently having trouble jquery I'm trying to trigger an event where when the user clicks on the header of an article, the hidden paragraph snippet is displayed under it fades in, my problem is ...
0
votes
0answers
21 views
Qt - dialog->exec() renders modeless dialog
What would you think if:
QString fileName = QFileDialog::getSaveFileName(this,
tr("Save As"), ".",
...
-2
votes
3answers
48 views
Using (this) in game program
I've been following a tutorial on Youtube that helps you learn to code a 3D game but it skipped in one section and I can't understand what I'm missing, or how to fix it. Essentially before launching ...
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 ...
3
votes
6answers
90 views
Using 'this' when initializing an instance variable in java?
I've seen this used when declaring an instance variable in IB's API, but this seems like a bad idea. Is assignment guaranteed to occur after this has been fully constructed? Does it matter?
I thought ...
2
votes
1answer
32 views
Is this a valid way to assign properties to an object?
Is this a valid way to assign properties to an object? I have an if/ else statement and I want it to determine what the properties of p and i are.
function game(){
var self = this;
...
1
vote
1answer
18 views
How can I invoke *this* on a JRBeanCollectionDataSource?
I am passing a list of images to my report. I want to render it inside a List object in the report.
I have used JasperReports lists before and I'm aware that I can reference each field of an element ...
0
votes
1answer
45 views
jQuery - this.option becomes undefined in load function
I'm trying to alter a Plugin a little bit, here's the Prototype function, I've marked what lines I've added.
OK, so my problem happens inside the img-load function I've added. I've surrounded the old ...
0
votes
2answers
50 views
FadeIn all Elements except this
I am a little confused with my following example:
I solely want to overlay all my td elements except 'this', so basically invert what is currently happening. Not the hovered td shall be overlayed, ...
0
votes
2answers
35 views
How do I select what's inside of the this selector? JQuery
For example, I have a nested list:
<ul id="navigation">
<li id="home">
<ul id="sub_menus">
<li id="about_us">
<div class="same>
...
1
vote
6answers
138 views
What is the 'this' pointer?
I'm fairly new to C++, and I don't understand what the this pointer does in the following scenario:
void do_something_to_a_foo(Foo *foo_instance);
void Foo::DoSomething()
{
...
0
votes
5answers
69 views
what is the 'this' keyword refering to in my code?
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Cursor;
import java.awt.Dimension;
import javax.swing.*;
import java.awt.event.*;
public class CursorClass implements ...
5
votes
2answers
215 views
What is 'this' used for in C# language?
I've read open source c# code and there is a lot of strange grammar (to me).
They declare method arguments with the this keyword like this:
this object @object
What does it mean?
If I remove ...
0
votes
1answer
30 views
Using this(class object) inside click event function
I have a click event over a button, I have to pass this class object to call a function inside click event.I requirement is following
$(this).on('click', function(){
this.callFunc();
});
For ...
0
votes
0answers
16 views
restoring window from system trau from another window wpf
I have a window that is minimized on the event of loging out and continue to do its operations
and pops up the home log-in window
I want to restore the same window with the status if the same login ...
0
votes
4answers
48 views
What happen when you call an override method using super and this keyword?
public class Superclass {
void method0(){
System.out.println("superclass");
}
}
public class Subclass extends Superclass{
void method0(){
...
0
votes
4answers
25 views
The ability to pass a method parameter as an object's state to be changed
I actually have two questions about how to do this correctly. I am fairly new to Java programming, and this makes what I want to do hard to do by myself and by not asking any questions.
My first ...
0
votes
3answers
79 views
What is “this” in jquery boolean toggle?
I was wondering what is the "this" in the jquery boolean toggle function. I ran a few tests when calling the toggle on a list of jQuery elements, and It's not null or underfined, it's not window, it's ...
-6
votes
2answers
29 views
I'm trying to delete an image from a DB using AJAX, code works but cant tranverse DOM and hide image, why?
$('.deleteImage a').click(function() {
alert('Delete this?');
$.ajax({
type:'GET',
url: this,
success: function(){
$(this).hide('slow');
}
});
return false;
});
0
votes
3answers
54 views
How do I access the elements that are inside the 'this' that I am currently working with?
How do I access the elements that are inside the 'this' that I am currently working with ?
Following is the HTML code I am currently working with.
<div class="expander" id="edu">educational ...
3
votes
1answer
75 views
How “this” is looked up in callback of Javascript [duplicate]
I have confused myself in the following case:
function foo() {
}
foo.prototype.bar1 = function() {
console.log(this); // shows "Window"!!
}
foo.prototype.bar2 = function(func) {
func();
}
var ...
0
votes
2answers
48 views
*this-> can not be used as a function
Here's an excerpt of a class which I have created inside a header file :
typedef double real;
class Grid{
public :
explicit Grid ();
explicit Grid(size_t level );
Grid(const ...
0
votes
2answers
34 views
Is it possible to re-direct an instance from a constructor in a multi-class?
I am checking a boolean condition passed into a multi-class' constructor, and if true I'm essentially trying to assign this to an instance of the sub-class.
That doesn't work of course, so is there ...
2
votes
1answer
61 views
Reference to this inside prototype function
I am struggling hard with the this keyword in javascript. I have read lot of articles and answers but I don't understand how to apply all this knowledge to my simple piece of code.
Here is my ...
0
votes
1answer
16 views
creating new variable name instance using this[ ] in actionscript 3
I keep looking this over the internet but I think, as far as I have searched, nothing yet had been posted (if any, please give me some links). Is this a way to make an instance this way. When I tried, ...
-1
votes
0answers
22 views
I lose the context of this with the bind method
maybe, I am doing something wrong
I use the proxy function now, but I wonder why the bind method did not work?
(I use up to date browser)
this is the code
var Thumb = function (thumbElement) {
...
0
votes
4answers
53 views
JavaScript - how to save the state of “this” properly
I have the following code for js-learning purposes:
function A() {
var self = this;
this.test1 = function() {
console.log("A_test1");
B().test2();
return self;
}
...
0
votes
2answers
24 views
Proper way to pass on “this” to custom Tap event callback
I picked up a some code for a JavaScript tap event for touch devices here : GitHub page. Credit to Jørn Kinderås for this code.
My problem is that if I do something like this :
$('.support ...
0
votes
4answers
71 views
this: Cannot use this in static context
Can you please help me with below code. The error is: "Cannot use This in a static context"
public class Sample2 {
/**
* @param args
*/
public static void main(String[] args)
{
...
5
votes
4answers
95 views
When to use “this” in Java
I apologize for my trivial and probably silly question, but I am a bit confused as to when to use the "this" prefix when using a method or accessing something.
For example, if we look at #4
here:
...
0
votes
1answer
42 views
Understanding “this” in JQuery UI Widgets
Normally if I want to create a click event in JQuery I use the following syntax:
$("#test").on("click", function() { console.log($(this)); });
Here I can easily refer to the clicked element using ...
0
votes
1answer
35 views
Javascript using bind within an object, how can I access object this?
I am building an event manager for a little game that I am creating and have stumbled on a little problem (I don't know if it is a design pattern problem or if there is a solution to it)!
Take below ...
-1
votes
1answer
40 views
The constructor ConnectionActivityMotorsOn(ConnectionActivity) is undefined
I have problems with few errors. Inside Java class ConnectionActivity I have three more classes ConnectionActivityMotorsOn, ConnectionActivityStopAll, ConnectionActivityStandUp.
On the line ...
3
votes
3answers
66 views
'this' inside of anonymous closure functions
(function(value) {
this.value = value;
$('.some-elements').each(function(elt){
elt.innerHTML = this.value; // possibly undefined (Why?)
});
})(2);
Can someone explain the ...
0
votes
1answer
48 views
Link onclick add link id to Selector
I'm trying to add the id of my link to the selector in my function so that .XXXXXX1,2 or 3 is shown or hidden depending on which link is clicked. Here's the code I have put together so far:
I've ...
-2
votes
1answer
35 views
Can't reference current div
I am having a little problem with "this"...I wanna make the start() works for every div. But like that is returning HTML div obj, you know...
function init(){
box = [];
box = ...
1
vote
1answer
82 views
reuse serialized reference to “this”-Keyword
First things first: I'm not sure whether the information that I'm going to provide will be enough, I will happily add additional information if needed.
I'm serializing a complex structure into the ...




