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

Announcements
FLASH SALE: Save $500! Use code FLASH2026 at checkout until Feb 14th at 11:59PM ET. 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