Documentation
SolutionDeveloperComplianceProjects
  • Getting Started
  • Technology
    • Application Framework
    • Object-Relational Mapping
    • Security Framework
    • Architecture Pattern
    • API Management
  • Environment
    • Development Tool
    • Database Server
    • Web Server
  • PRESENTATION
    • Design Material
    • HTML Helpers
    • Icon Images
    • Custom CSS
    • JQuery Plugin
      • DataTables
      • Tabs
      • Date Picker
      • Calendar
      • Chart
      • Treeview
    • Client Script
      • Open Modal
      • Close Modal
      • Handle return data
      • Load Content
      • Change Hash
      • Change Title
      • Get actual Hash
      • Get Content
      • Update Content
      • Delete Content
      • Get Partial Content
      • Get Partial Content Async
      • Update Partial Content
      • Update Partial Content Async
      • Delete Partial Content
      • Get Action
      • Update Action
      • Delete Action
      • Cascading Dropdown
      • Display Document
    • MVC View
  • BACKEND
    • Base Controller
    • Controller
    • Base Model
    • View Model
    • Class Utility
      • Constant Values
      • Global Properties
      • Option Helper
      • Setting Helper
    • Data Repository
      • Read Columns
      • Read All Columns
      • Read First Record
      • Read by Primary Key
      • Find Record
      • Insert Record
      • Update Record
      • Delete Entity
      • Delete by Criteria
      • Delete by Primary Key
      • Counting Record
      • Check Exist
      • Generate Row-Id
    • Unit Of Work
    • Data Entity
  • Application Features
    • Account Management
    • Navigation Editor
    • Access Control
  • Examples
    • Simple Page
    • Master Detail
    • Editor Template
Powered by GitBook
On this page
  • General information
  • Example
  1. PRESENTATION
  2. JQuery Plugin

Tabs

PreviousDataTablesNextDate Picker

Last updated 2 years ago

General information

Navigation tabs are one of the features specified in the "global.css" file which is found in the "custom" plug-in folder.

A typical example of navigation tabs in our applications looks like this:

Example

A page section with 3 navigation tabs is implemented in the following way:

<div>
    <ul class="tabnav nav-tabs">
        <li class="active" data-value="tab-1"><a> Tab 1 </a></li>
            <li class=""       data-value="tab-2"><a> Tab 2 </a></li>
            <li class=""       data-value="tab-3"><a> Tab 3 </a></li>
    </ul>
    <div class="tab-content">
        <div class="tab-pane active" id="tab-1">
            <div class="order-tab">
                Content 1
            </div>
        </div>
        <div class="tab-pane" id="tab-2">
            <div class="order-tab">
                Content 2
            </div>
        </div>
        <div class="tab-pane" id="tab-3">
            <div class="order-tab">
                Content 3
            </div>
        </div>
    </div>
</div>

For more examples:

https://mdbootstrap.com/docs/standard/navigation/tabs/
https://www.w3schools.com/bootstrap/bootstrap_tabs_pills.asp