Ajaxmanager icon indicating copy to clipboard operation
Ajaxmanager copied to clipboard

Calling Ajaxmanager with the returned ajaxmanger-Object not working for me.

Open xiaobao opened this issue 14 years ago • 0 comments

Hi

I did this

$('#Id').live('click', function () { /* Ajax request to load form into it */ var manager = $.manageAjax.create('nonCachedAjaxRequests', { preventDoubbleRequests: true, cacheResponse: false });

        manager.add
        ({
            type: 'Get',
            url: 'url here',
            success: function (response)
            {

                // stuff here

            }
        });
    });

However when I do a double click it still allows them to go through however when I use the other way(uniqueName) It all works.

Stuff like caching seem to work just the preventDoubbleRequests is having problems.

xiaobao avatar Jun 13 '11 21:06 xiaobao