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

Announcements
April 13–15 - Dare to Unleash a New Professional You at Qlik Connect 2026: Register Now!
cancel
Showing results for 
Search instead for 
Did you mean: 
arusanah
Creator II
Creator II

qlik extensions .

hi I am new to qlik extensions  java scripting too  . I am trying to create and table extension object . tried google and found this code can somebody help me understand this piece of code

Qva.AddExtension('Table', function() { this.Element.innerHtml = "

Hello world

"; // Create variable to hold generated html var html = "

" // Cycle through the data for ( var i=0; i < 10; i++) { // get the row var row = i; // Generate html html += ""; } // Finmalize the html html += "

" + row[0].text + "" + row[1].text + "

"; // Set the HTML this.Element.innerHTML = html; }, true);

1 Reply