<?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 Hi , i also succeeded doing in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Framework-7-tab-bar/m-p/1105349#M70313</link>
    <description>&lt;P&gt;Hi , i also succeeded doing this, but i can't make the other tabs show the active state, it just changes the page, and doesn't show that there is a new active tab... the first tab remains blue, and the other are grey all the time.. is there any way to do this?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks...&lt;/P&gt;</description>
    <pubDate>Sat, 04 Jun 2016 20:04:39 GMT</pubDate>
    <dc:creator>Shaul_H_</dc:creator>
    <dc:date>2016-06-04T20:04:39Z</dc:date>
    <item>
      <title>Framework 7 tab bar</title>
      <link>https://community.intel.com/t5/Software-Archive/Framework-7-tab-bar/m-p/1105346#M70310</link>
      <description>&lt;P&gt;i can get the framework 7 tab bar to work, i mean switch views ,its just static&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 07:45:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Framework-7-tab-bar/m-p/1105346#M70310</guid>
      <dc:creator>Ibikunle_o_</dc:creator>
      <dc:date>2016-03-10T07:45:08Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Software-Archive/Framework-7-tab-bar/m-p/1105347#M70311</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Following these steps I have F7 Tab Bar working as expected:&lt;/P&gt;

&lt;P&gt;- Drop Tab Bar widget in page.&lt;/P&gt;

&lt;P&gt;- Add three subpages to the tab bar page.&lt;/P&gt;

&lt;P&gt;- Set at XDK Interactivity panel the action for each tab linked to a sub page.&lt;/P&gt;

&lt;P&gt;This way each tab bar button shows a subpage.&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
	Diego&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2016 11:36:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Framework-7-tab-bar/m-p/1105347#M70311</guid>
      <dc:creator>Diego_Calp</dc:creator>
      <dc:date>2016-03-10T11:36:00Z</dc:date>
    </item>
    <item>
      <title>thank you</title>
      <link>https://community.intel.com/t5/Software-Archive/Framework-7-tab-bar/m-p/1105348#M70312</link>
      <description>&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2016 06:04:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Framework-7-tab-bar/m-p/1105348#M70312</guid>
      <dc:creator>Ibikunle_o_</dc:creator>
      <dc:date>2016-03-11T06:04:01Z</dc:date>
    </item>
    <item>
      <title>Hi , i also succeeded doing</title>
      <link>https://community.intel.com/t5/Software-Archive/Framework-7-tab-bar/m-p/1105349#M70313</link>
      <description>&lt;P&gt;Hi , i also succeeded doing this, but i can't make the other tabs show the active state, it just changes the page, and doesn't show that there is a new active tab... the first tab remains blue, and the other are grey all the time.. is there any way to do this?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks...&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jun 2016 20:04:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Framework-7-tab-bar/m-p/1105349#M70313</guid>
      <dc:creator>Shaul_H_</dc:creator>
      <dc:date>2016-06-04T20:04:39Z</dc:date>
    </item>
    <item>
      <title>Hi Shaul,</title>
      <link>https://community.intel.com/t5/Software-Archive/Framework-7-tab-bar/m-p/1105350#M70314</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Hi Shaul,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;You could do it adding some extra code.&lt;/P&gt;

&lt;P&gt;The state is defined by the active property in the tab button class, for example:&lt;/P&gt;

&lt;PRE class="brush:xml;"&gt;&amp;lt;a href="#" class="tab-link widget uib_w_2 &lt;STRONG&gt;active&lt;/STRONG&gt;" data-uib="framework7/tab" data-ver="0" id="btntab1"&amp;gt;
&lt;/PRE&gt;

&lt;P&gt;You need to toggle this parameter setting active to the pressed tab and removing from the other. The steps are:&lt;/P&gt;

&lt;P&gt;1. Add an id for each tab button, for example btntab1, btntab2, btntab3.&lt;/P&gt;

&lt;P&gt;2. Add these lines in the click event for each tab:&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;$("#btntab1").addClass("active");
$("#btntab2").removeClass("active");
$("#btntab3").removeClass("active");
&lt;/PRE&gt;

&lt;P&gt;You need to repeat it in all your tabs click events, changing the addClass/removeClass to set active the clicked and inactive all others.&lt;/P&gt;

&lt;P&gt;I'm asuming you have three tabs, adapt it to the number of tabs you have.&lt;/P&gt;

&lt;P&gt;This is the lazy way, of course you can create a function like toggleTab(currentTab) that sets the current and disable others iterating.&lt;/P&gt;

&lt;P&gt;Hope this helps,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Regards&lt;/P&gt;

&lt;P&gt;Diego&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jun 2016 21:09:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Framework-7-tab-bar/m-p/1105350#M70314</guid>
      <dc:creator>Diego_Calp</dc:creator>
      <dc:date>2016-06-04T21:09:16Z</dc:date>
    </item>
  </channel>
</rss>

