Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
praveenkumar_s
Creator II
Creator II

Mashup of qlik sense with visual studio

Hey guys,

     Please let me know, i have integrated qlik sense app with visual studio successfully using javascript script below. but when i try to load it take more than 15-16 seconds to load all the modules from qlik to visual studio. what should i have do to reduce the loading time of the below script.

require.config({            

               

                baseUrl: (config.isSecure ? "https://" : "http://") + config.host + (config.port ? ":" + config.port : "") + config.prefix + "resources",               

                config: {

                    text: {

                        useXhr: function (url, protocol, hostname, port) {                          

                            return true;

                        }

                    }

                }            

                                    });

the below script alone takes 7-8 second to open..

           require(["js/qlik", 'jquery'], function (qlik, $) {           

                           

                app = qlik.openApp('324aa6fd-409c-4a7d-b5b8-9e92cfe81f38', config);

So please let me know how i can achieve this shortly and how i reduce the loading time issue..

0 Replies