Skip to content

Instantly share code, notes, and snippets.

@stefanwalther
Created November 18, 2013 16:46
Show Gist options
  • Save stefanwalther/7531101 to your computer and use it in GitHub Desktop.
Save stefanwalther/7531101 to your computer and use it in GitHub Desktop.
Define one or more javascript files to be loaded within a QlikView object extension (QlikView 11).
// Define one or more javascript files to be used within the extension
var cExtensionName = 'ExtensionName';
var jsFiles = [];
jsFiles.push('Extensions/' + cExtensionName + '/lib/js/BaseUtils.js');
jsFiles.push('Extensions/' + cExtensionName + '/lib/js/ExtensionUtils.js');
Qv.LoadExtensionScripts(jsFiles, function () {
// Initialize the extension
//Init();
// Rendering
//RenderChart();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment