(extracted explanation 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 is bound to *this*, the closure can still access 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 like (and avoid using variables to bind *this*):
function createCallback(callbackObject, callbackFunction)
{
return function ()
{
callbackFunction.apply(callbackObject, arguments);
};
}
The updated code would then look like:
this.dom.addEventListener("click", createCallback(this, this.onclick), false)