March 2018
Beginner to intermediate
514 pages
13h 11m
English
This is the core JavaScript file, which is being picked up and read by Qlik Sense as well as your browser. It needs to carry the name of the extension as the name, and it needs to match the .qext file. Otherwise, it will not work. For loading the JavaScript file, RequireJS is being used, and, as such the following basic structure needs to be maintained:
define([], function() { return { paint: function ($element, layout) { $element.html("This is Mastering Qlik Sense"); } };});
This is a fundamental structure, which can be extended to include the following additional elements:
define([], function() { return { paint: function(){}, resize: function(){}, initialproperties: {}, updateData: function(){}, //Feb 18' definition: ...Read now
Unlock full access