Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the below context menu plugin for jQuery 1.8.11.js and using the "build" callback to dynamically create the menu on every click.

http://medialize.github.com/jQuery-contextMenu/index.html

I'd like to be able to load the menu options dynamically when an item is clicked (calling a controller method that determines the available options depending on the ID of the item)

My problem is that this context menu library doesn't seem to support ajax calls, and if I try to make an ajax call in the 'build' callback, it obviously will not wait until the ajax call is complete.

Here is a trimmed-down snippet of what I am trying to do:

$.contextMenu({
    selector: '" + contextMenuSelector + @"',
    build: function ($trigger, e) {
    menuOptionsArray = [];
        //Ajax START
        $.ajax({
             type: "POST",
             url: <myurl>,
             //async: false, //**IF I UN-COMMENT THIS, IT WORKS**
             context: $(this),
             success: function (data) {
                   //BUILD THE OPTIONS ARRAY
                   menuOptionsArray...
                }
            });
         //Ajax END

         //This returns before the ajax call finishes               
         return {
            items: menuOptionsArray
        };
    }

In the above, setting async = false works, but since that is deprecated, I don't want to use that.

Is there any other way to load the items asynchronously, or would this require a modification of the plugin?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.