<?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: Right Click on QLIK Sense Extension in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1635932#M11586</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i think user is asking about adding more options to existing popout&lt;/P&gt;</description>
    <pubDate>Wed, 16 Oct 2019 10:19:09 GMT</pubDate>
    <dc:creator>ajaykakkar93</dc:creator>
    <dc:date>2019-10-16T10:19:09Z</dc:date>
    <item>
      <title>Right Click on QLIK Sense Extension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1624967#M11333</link>
      <description>&lt;P&gt;I have a custom QLIK Sense Extension when user right click on that extension i want to add some of my options there in addition to what come by default in QLIK.&amp;nbsp; Can code to add that option ?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2019 05:01:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1624967#M11333</guid>
      <dc:creator>vikas_ksharma</dc:creator>
      <dc:date>2019-09-18T05:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Right Click on QLIK Sense Extension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1631372#M11445</link>
      <description>&lt;P&gt;i can help&amp;nbsp;&lt;/P&gt;&lt;P&gt;send me the extension&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Oct 2019 08:10:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1631372#M11445</guid>
      <dc:creator>dannyy81</dc:creator>
      <dc:date>2019-10-04T08:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: Right Click on QLIK Sense Extension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1632827#M11488</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;you can make a example extension like list box with the right click options as example, this will help in better understanding.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ajay Kakkar&lt;/P&gt;</description>
      <pubDate>Wed, 09 Oct 2019 07:06:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1632827#M11488</guid>
      <dc:creator>ajaykakkar93</dc:creator>
      <dc:date>2019-10-09T07:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: Right Click on QLIK Sense Extension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1635823#M11578</link>
      <description>&lt;P&gt;i can not show you everything&lt;/P&gt;&lt;P&gt;but it goes something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;app.visualization.create(
'listbox',
[
vDimValue,//name of the field 

],
{
"showTitles": true,
"qInitialDataFetch": [
{
"qHeight": 20,
"qWidth": 10
}
]
//"title": ''//filterTitle
}

).then(function(vis){
vis.show(elmentID)//elementid on the html file;

});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 07:51:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1635823#M11578</guid>
      <dc:creator>dannyy81</dc:creator>
      <dc:date>2019-10-16T07:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Right Click on QLIK Sense Extension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1635921#M11584</link>
      <description>&lt;P&gt;on rendering the&amp;nbsp;visualization you add the following attributes:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;return {
definition: props,
support : {
snapshot: true,
export: true,
exportData : true
},&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 10:10:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1635921#M11584</guid>
      <dc:creator>dannyy81</dc:creator>
      <dc:date>2019-10-16T10:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: Right Click on QLIK Sense Extension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1635932#M11586</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i think user is asking about adding more options to existing popout&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 10:19:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1635932#M11586</guid>
      <dc:creator>ajaykakkar93</dc:creator>
      <dc:date>2019-10-16T10:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: Right Click on QLIK Sense Extension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1636108#M11594</link>
      <description>&lt;P&gt;if its not qlik reuse asset then you have to build it yourself&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 13:28:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1636108#M11594</guid>
      <dc:creator>dannyy81</dc:creator>
      <dc:date>2019-10-16T13:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Right Click on QLIK Sense Extension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1636128#M11595</link>
      <description>&lt;P&gt;Do you have a example for that?&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 13:48:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1636128#M11595</guid>
      <dc:creator>ajaykakkar93</dc:creator>
      <dc:date>2019-10-16T13:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Right Click on QLIK Sense Extension</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1636152#M11597</link>
      <description>&lt;P&gt;you have to be more specific and send&amp;nbsp; an example of your own&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2019 14:21:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Right-Click-on-QLIK-Sense-Extension/m-p/1636152#M11597</guid>
      <dc:creator>dannyy81</dc:creator>
      <dc:date>2019-10-16T14:21:10Z</dc:date>
    </item>
  </channel>
</rss>

