Skip to main content

After installing Millau all my script with Ajax call stop working.
Any Idea?

Hi Andrea, can you post an example of one of your scripts that stopped working, and explain how you’re loading this script into your Skuid Pages? That would help us be able to troubleshoot.


Hi Zack,
thankyou for the response
Here you are

p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica}

$.post(“https://MYEXTERNALDOMAIN/api/Preventivo”,prev).done(function(data){

    console.log(data);  

}).fail(function(err){

    var mess=err && err.responseJSON && err.responseJSON.message ? err.responseJSON.message : ‘Errore sconosciuto. Contattare Assistenza’;

        console.log(err);

});

I’m loading thorught a Button with a script action. In brookling it worked as aspected but now (I’m debugging with Chrome developers tools) when it fire the ajax post no call is fired and also it doesn’t fall back in the fail function.

Another point,
after update it seems change some User profile…


Reply