<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Capturing Events in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Capturing-Events/m-p/529673#M1235006</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;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?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
    <dc:creator>williamlau</dc:creator>
    <dc:date>2026-01-26T16:26:21Z</dc:date>
    <item>
      <title>Capturing Events</title>
      <link>https://community.qlik.com/t5/QlikView/Capturing-Events/m-p/529673#M1235006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;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?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Capturing-Events/m-p/529673#M1235006</guid>
      <dc:creator>williamlau</dc:creator>
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing Events</title>
      <link>https://community.qlik.com/t5/QlikView/Capturing-Events/m-p/529674#M1235010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't think, there are such events are logged by the application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Oct 2013 17:42:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Capturing-Events/m-p/529674#M1235010</guid>
      <dc:creator />
      <dc:date>2013-10-25T17:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing Events</title>
      <link>https://community.qlik.com/t5/QlikView/Capturing-Events/m-p/529675#M1235015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think so. It's all javascript. See here for example: &lt;A _jive_internal="true" href="https://community.qlik.com/message/259096#259096"&gt;http://community.qlik.com/message/259096#259096&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Oct 2013 18:33:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Capturing-Events/m-p/529675#M1235015</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-10-25T18:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing Events</title>
      <link>https://community.qlik.com/t5/QlikView/Capturing-Events/m-p/529676#M1235019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey William,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sure, since the AJAX-client is a web page every normal dom events are applicable.&lt;/P&gt;&lt;P&gt;QV also ships with jQuery so you can use that to hook into the events and attach your own listener.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Somthing like,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="container" style="margin: 0 !important; padding: 0 !important; font-size: 1em !important;"&gt;&lt;/P&gt;&lt;DIV class="line" style="margin: 0 !important; padding: 0 0.5em 0 1em !important; font-size: 1em !important;"&gt;&lt;CODE style="font-size: 1em !important; font-family: source-code-pro, Consolas, monospace !important; padding: 0 !important; margin: 0 !important;"&gt;$( &lt;SPAN class="string" style="color: #dd1144;"&gt;"#PageContainer"&lt;/SPAN&gt; ).on( &lt;SPAN class="string" style="color: #dd1144;"&gt;"click"&lt;/SPAN&gt;, &lt;SPAN class="keyword" style="font-weight: bold;"&gt;function&lt;/SPAN&gt;() {&lt;/CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P class="container" style="margin: 0 !important; padding: 0 !important; font-size: 1em !important;"&gt;&lt;/P&gt;&lt;DIV class="line" style="margin: 0 !important; padding: 0 0.5em 0 1em !important; font-size: 1em !important;"&gt;&lt;CODE style="font-size: 1em !important; font-family: source-code-pro, Consolas, monospace !important; padding: 0 !important; margin: 0 !important;"&gt;&amp;nbsp; alert( 'Clickely Click' );&lt;/CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P class="container" style="margin: 0 !important; padding: 0 !important; font-size: 1em !important;"&gt;&lt;/P&gt;&lt;DIV class="line" style="margin: 0 !important; padding: 0 0.5em 0 1em !important; font-size: 1em !important;"&gt;&lt;CODE style="font-size: 1em !important; font-family: source-code-pro, Consolas, monospace !important; padding: 0 !important; margin: 0 !important;"&gt;});&lt;/CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 03 Nov 2013 19:50:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Capturing-Events/m-p/529676#M1235019</guid>
      <dc:creator>Alexander_Thor</dc:creator>
      <dc:date>2013-11-03T19:50:49Z</dc:date>
    </item>
  </channel>
</rss>

