<?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: Automatic Switching of Tabs in Ajax Client in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338016#M705751</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Has anyone had any luck with this? I am having the same issue with AJAX.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Oct 2014 16:57:36 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-10-07T16:57:36Z</dc:date>
    <item>
      <title>Automatic Switching of Tabs in Ajax Client</title>
      <link>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338011#M705746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I currently have a QV desktop application that runs on a large screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Every 15 seconds, it switches from one tab to the next using a condition on the tab that looks at the time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone suggest how I could achieve a similar function using the Ajax client&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2012 16:44:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338011#M705746</guid>
      <dc:creator />
      <dc:date>2012-04-04T16:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Switching of Tabs in Ajax Client</title>
      <link>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338012#M705747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dave&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Define the following variables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set vDelay = 15; // duration of screen in seconds&lt;/P&gt;&lt;P&gt;Set vSheets = 10;&amp;nbsp; // number of sheets&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set vShow = =ceil((frac(now())*86400/(vSheets*vDelay)-floor(frac(now())*86400/(vSheets*vDelay)))*(vSheets)); &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(the double = sign is not a misprint)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now for each sheet, set the conditionally show to &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(vShow = 1)&amp;nbsp;&amp;nbsp; // for the first sheet&lt;/P&gt;&lt;P&gt;(vShow = 2)&amp;nbsp;&amp;nbsp; // for the next sheet&lt;/P&gt;&lt;P&gt;... and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vShow is updated continuously and counts from 0 to vSheets-1, incrementing every vDelay seconds.&lt;/P&gt;&lt;P&gt;This approach should work in both the plugin and in Ajax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2012 17:10:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338012#M705747</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2012-04-04T17:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Switching of Tabs in Ajax Client</title>
      <link>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338013#M705748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please explain the logic behind the vShow function???&lt;/P&gt;&lt;P&gt;I know that it works but i dont properly understand how ....why do we multiply by 86400 first of all...&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Aug 2013 13:02:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338013#M705748</guid>
      <dc:creator />
      <dc:date>2013-08-23T13:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Switching of Tabs in Ajax Client</title>
      <link>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338014#M705749</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;vShow increments by one every vDelay seconds up to vSheets, where it starts at 1 again. 86400 is the number of seconds in a day, so this is converting the time portion of now() to seconds after midnight. The calculation is then done in seconds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Aug 2013 13:20:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338014#M705749</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2013-08-23T13:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Switching of Tabs in Ajax Client</title>
      <link>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338015#M705750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jonathan - I've tried your approach to this but it doesn't seem to loop back through in AJAX. Have you made any more progress on this since this post?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Apr 2014 17:26:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338015#M705750</guid>
      <dc:creator />
      <dc:date>2014-04-01T17:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Switching of Tabs in Ajax Client</title>
      <link>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338016#M705751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Has anyone had any luck with this? I am having the same issue with AJAX.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 16:57:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338016#M705751</guid>
      <dc:creator />
      <dc:date>2014-10-07T16:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Automatic Switching of Tabs in Ajax Client</title>
      <link>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338017#M705752</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 need to have a look at this document on how to configure the same on AJAX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if that worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;ASHFAQ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2014 17:33:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338017#M705752</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-10-07T17:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic Switching of Tabs in Ajax Client</title>
      <link>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338018#M705753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Emilio,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I have gone about this in the past is by having QlikView display in an iFrame and have an HTML timer refreshing the host page.&amp;nbsp; The QlikView URL can then have a parameter to set a field value that fires a trigger to show the correct page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See this post on Ajax parameters, and my comment on the third page around getting triggers to fire.&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/blogs/qlikviewdesignblog/2014/07/11/ajax-and-url-parameters" title="http://community.qlik.com/blogs/qlikviewdesignblog/2014/07/11/ajax-and-url-parameters"&gt;http://community.qlik.com/blogs/qlikviewdesignblog/2014/07/11/ajax-and-url-parameters&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 18:43:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Automatic-Switching-of-Tabs-in-Ajax-Client/m-p/338018#M705753</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2014-10-14T18:43:14Z</dc:date>
    </item>
  </channel>
</rss>

