Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
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?

3 Replies
Not applicable

Hi,

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

Gysbert_Wassenaar

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' );

});