<?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 How to hide a sheet object when another sheet object is minimized in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-hide-a-sheet-object-when-another-sheet-object-is/m-p/225095#M77438</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have 4 charts in a sheet and 1 slider. The slider only reflects it changes in one of the charts. So I'd like to hide the slider if the specific chart is minimized.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Oct 2009 01:48:22 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-10-27T01:48:22Z</dc:date>
    <item>
      <title>How to hide a sheet object when another sheet object is minimized</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-a-sheet-object-when-another-sheet-object-is/m-p/225093#M77436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As the title says, I'd like to hide a sheet object if a given chart is minimized and show the object if the same chart is shown.&lt;/P&gt;&lt;P&gt;How can I do that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 01:18:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-a-sheet-object-when-another-sheet-object-is/m-p/225093#M77436</guid>
      <dc:creator />
      <dc:date>2009-10-27T01:18:26Z</dc:date>
    </item>
    <item>
      <title>How to hide a sheet object when another sheet object is minimized</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-a-sheet-object-when-another-sheet-object-is/m-p/225094#M77437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not so easy. My understanding is that QlikView simply doesn't yet have the triggers that would be required to make it work reliably. I believe the consensus suggestion is to instead use buttons to minimize/hide and maximize/unhide all of the related objects at the same time. Others may have other ideas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 01:36:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-a-sheet-object-when-another-sheet-object-is/m-p/225094#M77437</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-10-27T01:36:43Z</dc:date>
    </item>
    <item>
      <title>How to hide a sheet object when another sheet object is minimized</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-a-sheet-object-when-another-sheet-object-is/m-p/225095#M77438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have 4 charts in a sheet and 1 slider. The slider only reflects it changes in one of the charts. So I'd like to hide the slider if the specific chart is minimized.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 01:48:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-a-sheet-object-when-another-sheet-object-is/m-p/225095#M77438</guid>
      <dc:creator />
      <dc:date>2009-10-27T01:48:22Z</dc:date>
    </item>
    <item>
      <title>How to hide a sheet object when another sheet object is minimized</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-a-sheet-object-when-another-sheet-object-is/m-p/225096#M77439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use this VBS function.&lt;/P&gt;&lt;P&gt;'Function ConditionalShowObject(strSourceObjectID,strTargetObjectID)&lt;BR /&gt;Function ConditionalShowObject&lt;BR /&gt;'Set SourceOBJ = Activedocument.GetSheetObject(strSourceObjectID)&lt;BR /&gt;'Set targetOBJ = Activedocument.GetSheetObject(strTargetObjectID)&lt;BR /&gt;Set SourceOBJ = Activedocument.GetSheetObject("CH01")&lt;BR /&gt;Set targetOBJ = Activedocument.GetSheetObject("SL01")&lt;BR /&gt;Set tProp = targetOBJ.GetProperties&lt;BR /&gt;tProp.Layout.Frame.Show.Always = False&lt;BR /&gt;If SourceOBJ.IsMinimized Then&lt;BR /&gt; tProp.Layout.Frame.Show.Expression.v = "0=1"&lt;BR /&gt;Else&lt;BR /&gt; tProp.Layout.Frame.Show.Expression.v = "1=1"&lt;BR /&gt;End If&lt;BR /&gt;targetOBJ.SetProperties tProp&lt;BR /&gt;Set tProp = Nothing&lt;BR /&gt;Set targetOBJ = Nothing&lt;BR /&gt;Set SourceOBJ = Nothing&lt;BR /&gt;End Function&lt;/P&gt;&lt;P&gt;(for chart objects you must use "GraphLayout" instead of "Layout")&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The problem is when you double-click the chart to minimize or restore it, it doesn't trigger any event (if the chart was already selected/activated before the double-click).&lt;/P&gt;&lt;P&gt;But, you may try to put the function on Deactivate event on the chart you want to link with the slider, and see if it is convenable (still, the user must deactivate it to slider appear/disappear).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 05:42:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-a-sheet-object-when-another-sheet-object-is/m-p/225096#M77439</guid>
      <dc:creator>mongolu</dc:creator>
      <dc:date>2009-10-27T05:42:27Z</dc:date>
    </item>
    <item>
      <title>How to hide a sheet object when another sheet object is minimized</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-hide-a-sheet-object-when-another-sheet-object-is/m-p/225097#M77440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mihai,&lt;/P&gt;&lt;P&gt;Thank you very much for your help. It does not work as I'd like because there is no event related to maximize or minimize object (I guess It should be in future versions), but it works if the user click outside the object in case of the chart is already selected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2009 18:26:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-hide-a-sheet-object-when-another-sheet-object-is/m-p/225097#M77440</guid>
      <dc:creator />
      <dc:date>2009-10-27T18:26:23Z</dc:date>
    </item>
  </channel>
</rss>

