*(extracted some explanation that was hidden in comments in other answer)*
The problem lies in the following line:
this.dom.addEventListener("click", self.onclick, false);
Here, you pass a function object to be used as callback. When the event trigger, the function is called but now it has no association with any object (this).
The problem can be solved by wrapping the function (with it's object reference) in a closure as follows:
this.dom.addEventListener(
"click",
function(event) {self.onclick(event)},
false);
Since the variable self was assigned *this* when the closure was created, the closure function will remember the value of the self variable when it's called at a later time.
An alternative way to solve this is to make an utility function (and avoid using variables to bind *this*):
function closure(context, fn) {
return function () {
fn.apply(context, arguments);
};
}
The updated code would then look like:
this.dom.addEventListener("click", closure(this, this.onclick), false)