I am working on the new Palm Pre WebOS, the Apps for Palm Pre are developed in MojoSDK which is developed on top of Prototype Javascript Framework.
I am trying to access variables defined at assistant level in event handlers which are a part of the same assistant as well. When I access the assistant level variables in an event handler, I get it as undefined. However, the variables are accessible in the setup function.
For reference, have a look at the Code below:
Code:
function MyTestAssistant(passedValue)
{
this.passedValue = passedValue;
}
MyTestAssistant.prototype.setup = function()
{
Mojo.Log.info("Passed Value Is: " + this.passedValue); // Prints the value set in Constructor
}
MyTestAssistant.prototype.testListTapHandler = function(event)
{
Mojo.Log.info("Passed Value Is: " + this.passedValue); // Logs undefined
}
I call this here:
Mojo.Event.listen(this.myTestList, Mojo.Event.listTap, this.testListTapHandler);
Is anyone else having this issue or I am doing something wrong here? Is it possible to access the variables in handler or can we have think of workarounds to achieve it?
I have found the solution to the problem. Another Forum helped me as well.
The core issue, as pointed out by Paul is of Binding and Scope.
I updated my implementation to the following for making it work:
Thanks for your help Paul.
Regards,
Muhammad Haseeb Khan