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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
williamlau
Partner - Contributor III
Partner - Contributor III

Capturing Events

Within Document Extensions, is there a way to capture user events such as a key pressed on the Browser window or a mouse click anywhere on the webpage?

Labels (1)
3 Replies
Not applicable

Hi,

I don't think, there are such events are logged by the application.

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

I think so. It's all javascript. See here for example: http://community.qlik.com/message/259096#259096


talk is cheap, supply exceeds demand
Alexander_Thor
Employee
Employee

Hey William,

Sure, since the AJAX-client is a web page every normal dom events are applicable.

QV also ships with jQuery so you can use that to hook into the events and attach your own listener.

Somthing like,

$( "#PageContainer" ).on( "click", function() {

  alert( 'Clickely Click' );

});