First let me state that this issue is happening in ie7 not firefox.
Also in the internet options > browser history > settings > temporary
Internet files I have it set to Automatically or Never. I call the
function below recursively. The operation works when I start with a
freshly opened browser, but if I navigate away and then back again the
operation does not complete correctly.

My though is that I have a caching issue. If this is the case how do I
force the no cache option in the ajax updated?



function ajax_updater_wraper( div_id, location, ind_id, cat_id,
cur_user, call_back ){
        //alert( call_back );
        new Ajax.Updater(
                div_id,
                location,
                {
                        method: 'get',
                        evalScripts: false,
                        parameters:
                        {
                                region_id: $( 'region_id' ).value,
                                nav_item: $( 'nav_item' ).value,
                                industry_id: ind_id,
                                category_id: cat_id,
                                cur_user: cur_user,
                                callback: call_back
                        },
                        onComplete: function(request)
                        {
                                eval( call_back )
                        }
                }
        )
}


-- 
Edward Grant
[EMAIL PROTECTED]

RPGA #342155
CAMARILLA #US2002022579

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Spinoffs" 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/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to