I find the record views or base Creator to be lack luster and only data visual and not much to be able to edit and really use the data so I have bee creating my own Pages for data views of records to be able to view them in a good layout and be able to interact with the data and do actions. I have been looking at Bootstrap and it has a lot of components that would be awesome to do this.
At this moment, I am messing with Nav-tabs to be able to minimize the page length to only show what the viewer wants to see at the moment. I have add the html code for the tabs but the links to get the tabs to toggle and show their content are not working and they are defaulting to my main launchpage instead of the tab. Here is the code for the tabs. Any help with this would be awesome and could be beneficial for others to be able to use to make working with their records/data much more user friendly and appealing.
<ul class="nav nav-tabs">
<li class="nav-item"> <a href="" class="active nav-link" data-toggle="tab" data-target="#tabone">Tab 1</a> </li>
<li class="nav-item"> <a class="nav-link" href="" data-toggle="tab" data-target="#tabtwo">Tab 2</a> </li>
<li class="nav-item"> <a href="" class="nav-link" data-toggle="tab" data-target="#tabthree">Tab 3</a> </li>
</ul>
<div class="tab-content mt-2">
<div class="tab-pane fade show active" id="tabone" role="tabpanel">
<p class="">When I hear the buzz of the little world among the stalks, and grow familiar with the countless indescribable forms.</p>
</div>
<div class="tab-pane fade" id="tabtwo" role="tabpanel">
<p class="">Who formed us in his own image, and the breath of that universal love which bears and sustains us. And then, my friend.</p>
</div>
<div class="tab-pane fade" id="tabthree" role="tabpanel">
<p class="">In my soul and absorb its power, like the form of a beloved mistress, then I often think with longing.</p>
</div>