Note that there are some explanatory texts on larger screens.

plurals
  1. POnavigating from one tab to other
    text
    copied!<p>i do have a page which is created in PHP. This page includes a menu tab which consists of tabs called as Dash,Project.the dash tab consists of the table which shows some data in it.the scenario is like when i click on any one of the row of the table in dash tab it navigates to Project tab which consists of simple form and the data from the dash tab gets filled to form which is in project tab.but my problem is it remains on the same tab Which is Dash.I want that after clicking on the table in the dash it must shows the project tab but it is showing the Dash tabs content.i guess it is kept as Active that's why it is happening.</p> <pre><code>&lt;div class="tabbable"&gt; &lt;ul class="nav nav-tabs"&gt; &lt;li class="active"&gt; &lt;a href="#dash" data-toggle="tab"&gt;Dash&lt;/a&gt; &lt;/li&gt; &lt;li class=""&gt; &lt;a href="#projects" data-toggle="tab"&gt;Projects&lt;/a&gt; &lt;/li&gt; &lt;/ul&gt; &lt;div class="tab-content" style="padding-bottom: 9px; border-bottom: 1px solid #ddd;"&gt; &lt;div class="tab-pane active" id="dash"&gt; &lt;?php include "dash.php"; ?&gt; &lt;/div&gt; &lt;div class="tab-pane" id="projects"&gt; &lt;?php include "project.php"; ?&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p>the code for dash tab from where it is navigating is as follows:</p> <pre><code>&lt;tr&gt; &lt;td&gt; &lt;a href="#" data-bind="attr:{value:id,title:projname,href:root+'projects/project/'+id},text:projname"&gt; &lt;/td&gt; &lt;td data-bind="text:enddate"&gt;&lt;/td&gt; &lt;td data-bind="text:status"&gt;&lt;/td&gt; &lt;/tr&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload