Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I need your help.
I am working on Qlik Sense SDK. I am able to create an app, change in the script, add a chart ... through Visual Studio .Net.
The only thing that didn't work is the reload. I am able to change in the script, modify it, add new data... I am using app.DoReload() function.
Is there an other way to reload an application using SDK?
Thank you
Nancy
Hi! The "DoReload" method returns a Boolean indicating whether or not the reload succeeded. Does it return "true" in your case? Could there be something wrong in the script?
Hi,
it is returning true and no mistakes in the script.
Are you connecting to a server or a desktop? If it's a desktop you will need to add a call to "DoSave" on the app like this:
app.SetScript(<the script>);
app.DoSave();
app.DoReload();
Hi,
Could you be missing a SetScript after modifing it?
There is an example on AptkQlik · GitHub Reloader_NTLM that might be usefull.
Best regards
Lars-Göran Book