Search This Blog

Monday, October 21, 2019

Business Rule not Triggering

Business Rule not Triggering

If business rule is not trigger then check whether configuration on the business rule fields is available on form. If any one of the field not available then whole business wont trigger.

Wednesday, October 9, 2019

Enable CORS any URL

By joining your URL with the below it will enable cors.
https://cors-anywhere.herokuapp.com/

  var proxy = 'https://cors-anywhere.herokuapp.com/';

        var URL = ""URL";
        //Your URL
        // alert(URL);
        $.ajax({
            type: 'GET',
            async: "false",
            start_time: new Date().getTime(),
            url: proxy + URL,

});