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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

QlikView Document Extension JQuery Selection

Hello,

i'm trying to create a document Extension, that appends a click a Event to a column of a straigth table.

How can I select a straight table with jquery, object ID ?

example to select a TextBox with 'table.TextObject'

Thanks

Qva.AddDocumentExtension('Click', function () {

var oldcss = "";

this.Document.SetOnUpdateComplete(function () { 

  $('table.TextObject').click(

   function (){

    oncvlrowclick();

   });

});

window.oncvlrowclick = function(rowIx) {

  $.ajax({

alert('Click');

    };

});

//

0 Replies