<?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 TabRow Properties in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/TabRow-Properties/m-p/607866#M224428</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure when this issue started but I recently noticed it. Our current QV version is 11.2 SR5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In our applications, we have user facing controls that allow the ability to toggle the tabrow visibility.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is achieved using the standard vbscript macro as seen in the API guide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that when you toggle to the new state (show if hidden; hidden if shown), the tabrow doesn't display/hide properly. This occurs within new and existing applications. I've attached images below to help illustrate the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you switch back and forth between sheets then the problem corrects itself ...until the next time you run the relative macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know how to resolve this issue? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Feb 2014 16:20:10 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-02-19T16:20:10Z</dc:date>
    <item>
      <title>TabRow Properties</title>
      <link>https://community.qlik.com/t5/QlikView/TabRow-Properties/m-p/607866#M224428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure when this issue started but I recently noticed it. Our current QV version is 11.2 SR5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In our applications, we have user facing controls that allow the ability to toggle the tabrow visibility.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is achieved using the standard vbscript macro as seen in the API guide.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that when you toggle to the new state (show if hidden; hidden if shown), the tabrow doesn't display/hide properly. This occurs within new and existing applications. I've attached images below to help illustrate the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you switch back and forth between sheets then the problem corrects itself ...until the next time you run the relative macro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know how to resolve this issue? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2014 16:20:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TabRow-Properties/m-p/607866#M224428</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-19T16:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: TabRow Properties</title>
      <link>https://community.qlik.com/t5/QlikView/TabRow-Properties/m-p/607867#M224429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyone have any insight as to how this issue can be resolved?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2014 20:37:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TabRow-Properties/m-p/607867#M224429</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-03-17T20:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: TabRow Properties</title>
      <link>https://community.qlik.com/t5/QlikView/TabRow-Properties/m-p/607868#M224430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;figured out the solution....here's the result for anyone else who's interested.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'-----------------------------HIDE TAB ROW&lt;/P&gt;&lt;P&gt;SUB HideTabRow&lt;/P&gt;&lt;P&gt;&amp;nbsp; validateSecurity = checkSecurity ()&lt;/P&gt;&lt;P&gt;&amp;nbsp; IF validateSecurity = 0 THEN&lt;/P&gt;&lt;P&gt;&amp;nbsp; SET varTR = ActiveDocument.GetVariable("vTabRow")&lt;/P&gt;&lt;P&gt;&amp;nbsp; varTR.SetContent 1, TRUE&lt;/P&gt;&lt;P&gt;&amp;nbsp; EXIT SUB&lt;/P&gt;&lt;P&gt;&amp;nbsp; END IF&lt;/P&gt;&lt;P&gt;&amp;nbsp; SET DocProp = ActiveDocument.GetProperties&lt;/P&gt;&lt;P&gt;&amp;nbsp; DocProp.ShowTabRow = FALSE&lt;/P&gt;&lt;P&gt;&amp;nbsp; ActiveDocument.SetProperties DocProp&lt;/P&gt;&lt;P&gt;&amp;nbsp; SET objShell = CreateObject("WScript.Shell")&lt;/P&gt;&lt;P&gt;&amp;nbsp; objShell.SendKeys "{F6}"&lt;/P&gt;&lt;P&gt;&amp;nbsp; objShell.SendKeys "{F7}"&lt;/P&gt;&lt;P&gt;END SUB&lt;/P&gt;&lt;P&gt;'--------------------------------------------------------&lt;/P&gt;&lt;P&gt;'-----------------------------SHOW TAB ROW&lt;/P&gt;&lt;P&gt;SUB ShowTabRow&lt;/P&gt;&lt;P&gt;&amp;nbsp; validateSecurity = checkSecurity ()&lt;/P&gt;&lt;P&gt;&amp;nbsp; IF validateSecurity = 0 THEN&lt;/P&gt;&lt;P&gt;&amp;nbsp; SET varTR = ActiveDocument.GetVariable("vTabRow")&lt;/P&gt;&lt;P&gt;&amp;nbsp; varTR.SetContent 0, TRUE&lt;/P&gt;&lt;P&gt;&amp;nbsp; EXIT SUB&lt;/P&gt;&lt;P&gt;&amp;nbsp; END IF&lt;/P&gt;&lt;P&gt;&amp;nbsp; SET DocProp = ActiveDocument.GetProperties&lt;/P&gt;&lt;P&gt;&amp;nbsp; DocProp.ShowTabRow = TRUE&lt;/P&gt;&lt;P&gt;&amp;nbsp; ActiveDocument.SetProperties DocProp&lt;/P&gt;&lt;P&gt;&amp;nbsp; SET objShell = CreateObject("WScript.Shell")&lt;/P&gt;&lt;P&gt;&amp;nbsp; objShell.SendKeys "{F6}"&lt;/P&gt;&lt;P&gt;&amp;nbsp; objShell.SendKeys "{F7}"&lt;/P&gt;&lt;P&gt;END SUB&lt;/P&gt;&lt;P&gt;'--------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 17:06:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/TabRow-Properties/m-p/607868#M224430</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-05T17:06:27Z</dc:date>
    </item>
  </channel>
</rss>

