<?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 Re: how do you capture keyboard events in extension? in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/how-do-you-capture-keyboard-events-in-extension/m-p/1818407#M15169</link>
    <description>&lt;P&gt;this will give you an idea:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.qlik.com/us/trust/accessibility" target="_blank"&gt;https://www.qlik.com/us/trust/accessibility&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 28 Jun 2021 19:59:23 GMT</pubDate>
    <dc:creator>edwin</dc:creator>
    <dc:date>2021-06-28T19:59:23Z</dc:date>
    <item>
      <title>how do you capture keyboard events in extension?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/how-do-you-capture-keyboard-events-in-extension/m-p/1817973#M15162</link>
      <description>&lt;P&gt;Hi, ive seen articles on accessibility for qlik sense itself.&amp;nbsp; however i cant find any accessibility topics for extensions.&amp;nbsp; how do you capture keyboard events in your extension?&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;edwin&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 17:14:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/how-do-you-capture-keyboard-events-in-extension/m-p/1817973#M15162</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2021-06-25T17:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: how do you capture keyboard events in extension?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/how-do-you-capture-keyboard-events-in-extension/m-p/1818061#M15163</link>
      <description>&lt;P&gt;you can use jQuery :&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;for example - capture enter key&amp;nbsp;&lt;/P&gt;&lt;P&gt;$('#someTextBox').keypress(function(event){&lt;BR /&gt;var keycode = (event.keyCode ? event.keyCode : event.which);&lt;BR /&gt;if(keycode == '13'){&lt;BR /&gt;alert('You pressed a "enter" key in textbox');&lt;BR /&gt;}&lt;BR /&gt;});&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Jun 2021 11:15:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/how-do-you-capture-keyboard-events-in-extension/m-p/1818061#M15163</guid>
      <dc:creator>dannyy81</dc:creator>
      <dc:date>2021-06-26T11:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: how do you capture keyboard events in extension?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/how-do-you-capture-keyboard-events-in-extension/m-p/1818406#M15168</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/1570"&gt;@dannyy81&lt;/a&gt;&amp;nbsp;thanks for the response&lt;/P&gt;&lt;P&gt;ive seen this when the user is in an HTML object and presses a key&lt;/P&gt;&lt;P&gt;for accessibility, the whole extension is selected and the user presses a key.&amp;nbsp; to simulate this, press tab when you are in Qlik Sense until the first visualization object is selected, press press arrow keys to navigate to your extension.&amp;nbsp; then press ENTER.&amp;nbsp; thats the key i want to capture.&lt;/P&gt;&lt;P&gt;so its not really a user pressing a key when in a text box.&lt;/P&gt;&lt;P&gt;thanks for your time though.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2021 19:58:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/how-do-you-capture-keyboard-events-in-extension/m-p/1818406#M15168</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2021-06-28T19:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: how do you capture keyboard events in extension?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/how-do-you-capture-keyboard-events-in-extension/m-p/1818407#M15169</link>
      <description>&lt;P&gt;this will give you an idea:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.qlik.com/us/trust/accessibility" target="_blank"&gt;https://www.qlik.com/us/trust/accessibility&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2021 19:59:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/how-do-you-capture-keyboard-events-in-extension/m-p/1818407#M15169</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2021-06-28T19:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: how do you capture keyboard events in extension?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/how-do-you-capture-keyboard-events-in-extension/m-p/1818409#M15170</link>
      <description>&lt;P&gt;there is a&amp;nbsp;&lt;SPAN&gt;toggleDataView method in the capability API but all of the examples are for Mashups.&amp;nbsp; can that be used for extensions?&amp;nbsp; how?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;edwin&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jun 2021 20:15:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/how-do-you-capture-keyboard-events-in-extension/m-p/1818409#M15170</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2021-06-28T20:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: how do you capture keyboard events in extension?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/how-do-you-capture-keyboard-events-in-extension/m-p/1963132#M17123</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/1570"&gt;@dannyy81&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;you can use jQuery :&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;for example - capture enter key&amp;nbsp;&lt;/P&gt;
&lt;P&gt;$('#someTextBox').keypress(function(event){&lt;BR /&gt;var keycode = (event.keyCode ? event.keyCode : event.which);&lt;BR /&gt;if(keycode == '13'){&lt;BR /&gt;alert('You pressed a "enter" key in textbox');&lt;BR /&gt;}&lt;BR /&gt;});&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT color="#333333"&gt;&lt;U&gt;I am try to make a &lt;A href="https://spacebarclicker.info" target="_self"&gt;space bar clicker&lt;/A&gt; that counts the number of time you press the spacebar key.&amp;nbsp; Your code uses keycode==13 for Enter key. I am not sure what keycode to use for spacebar button. Can you please help with this?&lt;/U&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2022 05:37:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/how-do-you-capture-keyboard-events-in-extension/m-p/1963132#M17123</guid>
      <dc:creator>chrismorris</dc:creator>
      <dc:date>2022-08-02T05:37:25Z</dc:date>
    </item>
    <item>
      <title>Re: how do you capture keyboard events in extension?</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/how-do-you-capture-keyboard-events-in-extension/m-p/1963482#M17129</link>
      <description>&lt;P&gt;try 32&lt;/P&gt;</description>
      <pubDate>Tue, 02 Aug 2022 15:03:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/how-do-you-capture-keyboard-events-in-extension/m-p/1963482#M17129</guid>
      <dc:creator>dannyy81</dc:creator>
      <dc:date>2022-08-02T15:03:00Z</dc:date>
    </item>
  </channel>
</rss>

