<?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: Build your own tabrow in QlikView (Example in thread) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Build-your-own-tabrow-in-QlikView-Example-in-thread/m-p/479411#M1234972</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmmf, ye IE10 has some issues with ajax requests. Hold on a minute and I'll upload a example that doesn't require you to use a ajax call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Updated the example file should work in IE10 now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Nov 2013 20:56:00 GMT</pubDate>
    <dc:creator>Alexander_Thor</dc:creator>
    <dc:date>2013-11-06T20:56:00Z</dc:date>
    <item>
      <title>Build your own tabrow in QlikView (Example in thread)</title>
      <link>https://community.qlik.com/t5/QlikView/Build-your-own-tabrow-in-QlikView-Example-in-thread/m-p/479407#M1234962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 18pt;"&gt;Build your own Tabrow&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 18pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;tl;dr Tabrow extension template - get it here &lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-5257" target="_blank"&gt;http://community.qlik.com/docs/DOC-5257&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With QlikViews 11 we got the possibility to include document extensions to our QlikView documents.&lt;/P&gt;&lt;P&gt;This allows us to modify how the AJAX-client looks like but also modify behaviour or functionality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this thread I will focus on how we can build our own tabrow in QlikView.&lt;/P&gt;&lt;P&gt;Included is a package that contains a sample app and a sample extension that can be used as a base to create your own Tabrow by only editing CSS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The sample that is attached contains heavily commented code which should get you up to speed if you want to create your own extension from scratch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The sample could also be used as a base if you want to style it to your own look and feel.&lt;/P&gt;&lt;P&gt;The short version behind a tabrow is that QlikView passes an XML structure, that gets converted to an array of objects to your extension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We then loop every object, which corresponds to a tab in QlikView, and create basic HTML markup which in turn is styled according to a set of CSS-rules. So you could take the same basic structure and apply your own set of CSS rules to create your own tabrow without writing a single line of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The markup structure that's create looks something like this:&lt;/P&gt;&lt;P&gt;&amp;lt;div id='Tabrow' class='Tabrow'&amp;gt; &lt;EM&gt;--Standard container from QV&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class='navbar'&amp;gt; &lt;EM&gt;--Our own container/wrapper&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ul id='root' class='navbar'&amp;gt;&lt;EM&gt; --Our tabs go into a unordered list&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li class='active' id='Document\SH01'&amp;gt;&lt;EM&gt; --A list item that's our tab.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a&amp;gt;Tab Name&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li class='' id='Document\SH02'&amp;gt;&lt;EM&gt; --A list item that's our tab.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;a&amp;gt;A not active Tab Name&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/li&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/ul&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/div&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then we style and position the different objects through our style.css file.&lt;BR /&gt;And the end product looks something like this:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="48544" alt="tabrow.PNG.png" class="jive-image" height="330" src="https://community.qlik.com/legacyfs/online/48544_tabrow.PNG.png" style="width: 462.680412371134px; height: 330px;" width="463" /&gt;&lt;/P&gt;&lt;P&gt;Feel free to play around with it and if you run into any problems go have a look at &lt;A href="http://www.w3schools.com/css/" title="http://www.w3schools.com/css/" target="_blank"&gt;CSS Tutorial&lt;/A&gt; first and then post your questions here if you couldn't find a answer over at w3school .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14pt;"&gt;If you create something cool please share it with the community!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 16:26:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Build-your-own-tabrow-in-QlikView-Example-in-thread/m-p/479407#M1234962</guid>
      <dc:creator>Alexander_Thor</dc:creator>
      <dc:date>2026-01-26T16:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Build your own tabrow in QlikView (Example in thread)</title>
      <link>https://community.qlik.com/t5/QlikView/Build-your-own-tabrow-in-QlikView-Example-in-thread/m-p/479408#M1234965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Knipsel.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/48656_Knipsel.PNG.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Nov 2013 19:00:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Build-your-own-tabrow-in-QlikView-Example-in-thread/m-p/479408#M1234965</guid>
      <dc:creator>jochem_zw</dc:creator>
      <dc:date>2013-11-06T19:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Build your own tabrow in QlikView (Example in thread)</title>
      <link>https://community.qlik.com/t5/QlikView/Build-your-own-tabrow-in-QlikView-Example-in-thread/m-p/479409#M1234968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Interesting, which version of IE and QV are you running?&lt;/P&gt;&lt;P&gt;It seems the ajax request has loaded but not inserted the markup.&lt;/P&gt;&lt;P&gt;Perhaps I'll just skip that entire process since it's a but unnecessary &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Nov 2013 20:52:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Build-your-own-tabrow-in-QlikView-Example-in-thread/m-p/479409#M1234968</guid>
      <dc:creator>Alexander_Thor</dc:creator>
      <dc:date>2013-11-06T20:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: Build your own tabrow in QlikView (Example in thread)</title>
      <link>https://community.qlik.com/t5/QlikView/Build-your-own-tabrow-in-QlikView-Example-in-thread/m-p/479410#M1234970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Win 7 IE 10 and QV 11.20 Sr4 (latest)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Nov 2013 20:54:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Build-your-own-tabrow-in-QlikView-Example-in-thread/m-p/479410#M1234970</guid>
      <dc:creator>jochem_zw</dc:creator>
      <dc:date>2013-11-06T20:54:28Z</dc:date>
    </item>
    <item>
      <title>Re: Build your own tabrow in QlikView (Example in thread)</title>
      <link>https://community.qlik.com/t5/QlikView/Build-your-own-tabrow-in-QlikView-Example-in-thread/m-p/479411#M1234972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmmf, ye IE10 has some issues with ajax requests. Hold on a minute and I'll upload a example that doesn't require you to use a ajax call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Updated the example file should work in IE10 now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Nov 2013 20:56:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Build-your-own-tabrow-in-QlikView-Example-in-thread/m-p/479411#M1234972</guid>
      <dc:creator>Alexander_Thor</dc:creator>
      <dc:date>2013-11-06T20:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Build your own tabrow in QlikView (Example in thread)</title>
      <link>https://community.qlik.com/t5/QlikView/Build-your-own-tabrow-in-QlikView-Example-in-thread/m-p/479412#M1234974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes working now, thnx!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Nov 2013 21:38:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Build-your-own-tabrow-in-QlikView-Example-in-thread/m-p/479412#M1234974</guid>
      <dc:creator>jochem_zw</dc:creator>
      <dc:date>2013-11-06T21:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Build your own tabrow in QlikView (Example in thread)</title>
      <link>https://community.qlik.com/t5/QlikView/Build-your-own-tabrow-in-QlikView-Example-in-thread/m-p/479413#M1234976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please once you see this link..&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/563578"&gt;Re: Need Help&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to give navigation to sheets..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jul 2014 10:18:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Build-your-own-tabrow-in-QlikView-Example-in-thread/m-p/479413#M1234976</guid>
      <dc:creator>Nagaraju_KCS</dc:creator>
      <dc:date>2014-07-08T10:18:09Z</dc:date>
    </item>
  </channel>
</rss>

