Say I have the following defined in javascript:

com.company.long.namespace = {
    actions: {   
        add: {  
            defaults: {
                url: 'myurl/submit',
            },

            invoke: function () {   
                var submitUrl = this.defaults.url;                          
                com.company.long.namespace.foo.util.server.submit({
                    url: submitUrl,
                    success: function() { }
                });
            },
        }
    }
};

which I then call with within the context of a JQuery click event:

$(myElem).click(function() {
    com.company.long.namespace.actions.add.invoke();
});

Because of the way 'this' works within jQuery event callbacks, this.defaults is undefined when called from this context. Is there anyway to still make use of 'this' within this scope, without having to define the full namespace, or without using jQuery.proxy?

link|improve this question

75% accept rate
I assume you mean com.company.long.namespace.actions.add.invoke()? – Ken Redler May 3 '11 at 20:08
@Ken Redler - I did, thanks – leaf dev May 3 '11 at 20:12
feedback

2 Answers

up vote 5 down vote accepted

You can't call add, it's not a function.

If you call the add.invoke function, this.default is the default object that you have defined in the add object. You don't have to do anything special.

Example: http://jsfiddle.net/p4j4k/

link|improve this answer
@Guffa - Thanks for the example, thats odd because I swore I had been seeing different functionality in my actual code. I see that this is definitely working though in your example. The missing invoke was merely a typo when porting my code to an example. Thanks though. – leaf dev May 3 '11 at 20:24
@Guffa - I have implemented a more accurate example: jsfiddle.net/p4j4k/16 which demonstrates the undefined behaviour I am seeing – leaf dev May 3 '11 at 20:40
I suspect that in your code you may be using function prototypes or initialized objects/functions where the "this" object is not what you expected. Use console.log(this) and use the dev console, should help you to find out what is causing the problem. – user120242 May 3 '11 at 20:41
jsfiddle.net/p4j4k/17 Looks like my suspicion was correct. The "this" object is actually the "options" parameter, because options.callback() is actually doing callback.apply(options) – user120242 May 3 '11 at 20:49
@user120242 - Yes I noticed that as well. Do you know why apply is being used with 'options'. This seems odd. – leaf dev May 3 '11 at 20:55
show 4 more comments
feedback

To call a function with a context of your choosing you can use .apply(context) (more info about function.apply and function.call):

com.company.long.namespace.actions.add.invoke.apply(com.company.long.namespace.foo.util.context);

Within the invoke function this will refer to the context object.
Check this jsFillde example

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.