<?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: Activate Chart within Container from Button? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Activate-Chart-within-Container-from-Button/m-p/1587019#M527646</link>
    <description>&lt;P&gt;This was an issue that I brought up to R&amp;amp;D a while ago. Those who are using certain versions QlikView will notice that these properties no longer produce the desired result. The API for getting the active object and changing the active object programmatically can be found in this article with examples: &lt;A href="https://support.qlik.com/articles/000070090" target="_blank"&gt;https://support.qlik.com/articles/000070090&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 31 May 2019 08:12:57 GMT</pubDate>
    <dc:creator>StevenJDH</dc:creator>
    <dc:date>2019-05-31T08:12:57Z</dc:date>
    <item>
      <title>Activate Chart within Container from Button?</title>
      <link>https://community.qlik.com/t5/QlikView/Activate-Chart-within-Container-from-Button/m-p/927501#M527643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a tab with 3 containers on it. Each container contains two charts. I also have a couple of buttons. My requirement is that selecting a button (or re-opening the tab) causes a specific chart within each container to activate. I've tried using the Button Action: Activate Object for both the container object and the chart object but it is not working. I do also have an Apply Bookmark Action in my Button Properties Actions if that makes a difference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your help is greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Cassandra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 19:33:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Activate-Chart-within-Container-from-Button/m-p/927501#M527643</guid>
      <dc:creator>cbaqir</dc:creator>
      <dc:date>2015-09-23T19:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Activate Chart within Container from Button?</title>
      <link>https://community.qlik.com/t5/QlikView/Activate-Chart-within-Container-from-Button/m-p/927502#M527644</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;you have to use a macro for that purpose and then you can use buttons and actions to trigger the macro event:&lt;/P&gt;&lt;P&gt;Here the code snippet:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub ResetContainerObject&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ContTabSelect0("CT09")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ContTabSelect0("CT07")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ContTabSelect0("CT05")&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub ContTabSelect0(ObjectID)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set MV_ContainerObj = ActiveDocument.GetSheetObject(ObjectID)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set MV_ContProp = MV_ContainerObj.GetProperties&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MV_ActiveIndex2 = MV_ContProp.SingleObjectActiveIndex&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MV_ActiveIndex2 = 0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MV_ContProp.SingleObjectActiveIndex = MV_ActiveIndex2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MV_ContainerObj.SetProperties MV_ContProp&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 19:51:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Activate-Chart-within-Container-from-Button/m-p/927502#M527644</guid>
      <dc:creator>pamaxeed</dc:creator>
      <dc:date>2015-09-23T19:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: Activate Chart within Container from Button?</title>
      <link>https://community.qlik.com/t5/QlikView/Activate-Chart-within-Container-from-Button/m-p/927503#M527645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks like using Macros is usually not recommended according to &lt;A href="https://community.qlik.com/message/729894"&gt;Macro&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't suppose there are any other options?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 20:21:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Activate-Chart-within-Container-from-Button/m-p/927503#M527645</guid>
      <dc:creator>cbaqir</dc:creator>
      <dc:date>2015-09-23T20:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: Activate Chart within Container from Button?</title>
      <link>https://community.qlik.com/t5/QlikView/Activate-Chart-within-Container-from-Button/m-p/1587019#M527646</link>
      <description>&lt;P&gt;This was an issue that I brought up to R&amp;amp;D a while ago. Those who are using certain versions QlikView will notice that these properties no longer produce the desired result. The API for getting the active object and changing the active object programmatically can be found in this article with examples: &lt;A href="https://support.qlik.com/articles/000070090" target="_blank"&gt;https://support.qlik.com/articles/000070090&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 08:12:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Activate-Chart-within-Container-from-Button/m-p/1587019#M527646</guid>
      <dc:creator>StevenJDH</dc:creator>
      <dc:date>2019-05-31T08:12:57Z</dc:date>
    </item>
  </channel>
</rss>

