Okay, I'm going to guess that the problem here is unexpected method
bindings. At some point in the Deferred processing maybe something
rebinds the function you pass in, or something. At any rate, I bet if
you change

    addCallbacks(this.saveData, .....

to

    addCallbacks(bind(this.saveData, this), ...

or use a closure or something, you'll get what you expect.

Now the question becomes, what is /supposed/ to happen? I'm not enough
of a javascript whiz to know for certain.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"MochiKit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/mochikit
-~----------~----~----~----~------~----~------~--~---

Reply via email to