Click here to Skip to main content
15,886,799 members
Articles / Web Development / HTML
Tip/Trick

Bootstrap Table With Sorting, Searching and Paging using dataTable.js (Responsive)

Rate me:
Please Sign up or sign in to vote.
4.86/5 (33 votes)
26 Sep 2014CPOL1 min read 644.2K   20.1K   37   51
This tip presents an example of datatable in responsive using bootstrap and dataTable.js

Introduction

This tip presents an example of DataTable in Responsive using bootstrap. The DataTable.js automatically provides column sorting, searching and paging. DataTable.js is just like a .js file. It's open source. In many of the applications, we need to display data as a table format so in this scenario, if we will use this library then it reduces our work and it increases the efficiency.

Background

DataTable.JS

DataTable.js is just like a JavaScript library we can use in any web related projects. It automatically provides column sorting, searching and paging functionalities.

Bootstrap

Bootstrap is the most popular for HTML, CSS and JS framework for developing responsive applications.

Responsive

Responsive means the single application will target any device like mobile, tablet, small PC and large PC.

Using the Code

Here is the code to display dataTable in responsive mode.

The JQuery is the top of all the .js libraries.

First, we need to include the required libraries.

HTML
//
// These are required files we must include these libraries 
//

<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet">   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<link rel="stylesheet" 
href="http://cdn.datatables.net/1.10.2/css/jquery.dataTables.min.css"></style>
<script type="text/javascript" 
src="http://cdn.datatables.net/1.10.2/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" 
src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>

After including all required libraries, put your HTML table either static or dynamic.

Here I am showing static HTML table. If your table is dynamic, it is also the same.

HTML
//
// Table with data
//
<table id="myTable">  
        <thead>  
          <tr>  
            <th>ENO</th>  
            <th>EMPName</th>  
            <th>Country</th>  
            <th>Salary</th>  
          </tr>  
        </thead>  
        <tbody>  
          <tr>  
            <td>001</td>  
            <td>Anusha</td>  
            <td>India</td>  
            <td>10000</td>  
          </tr>  
          <tr>  
            <td>002</td>  
            <td>Charles</td>  
            <td>United Kingdom</td>  
            <td>28000</td>  
          </tr>  
          <tr>  
            <td>003</td>  
            <td>Sravani</td>  
            <td>Australia</td>  
            <td>7000</td>  
          </tr>  
           <tr>  
            <td>004</td>  
            <td>Amar</td>  
            <td>India</td>  
            <td>18000</td>  
          </tr>  
          <tr>  
            <td>005</td>  
            <td>Lakshmi</td>  
            <td>India</td>  
            <td>12000</td>  
          </tr>  
          <tr>  
            <td>006</td>  
            <td>James</td>  
            <td>Canada</td>  
            <td>50000</td>  
          </tr>  
          
           <tr>  
            <td>007</td>  
            <td>Ronald</td>  
            <td>US</td>  
            <td>75000</td>  
          </tr>  
          <tr>  
            <td>008</td>  
            <td>Mike</td>  
            <td>Belgium</td>  
            <td>100000</td>  
          </tr>  
          <tr>  
            <td>009</td>  
            <td>Andrew</td>  
            <td>Argentina</td>  
            <td>45000</td>  
          </tr>  
          
            <tr>  
            <td>010</td>  
            <td>Stephen</td>  
            <td>Austria</td>  
            <td>30000</td>  
          </tr>  
          <tr>  
            <td>011</td>  
            <td>Sara</td>  
            <td>China</td>  
            <td>750000</td>  
          </tr>  
          <tr>  
            <td>012</td>  
            <td>JonRoot</td>  
            <td>Argentina</td>  
            <td>65000</td>  
          </tr>  
        </tbody>  
      </table>  

Finally, after creating table, we need to add some jquery code for dataTable functionalites to our table id.

HTML
//
// This only line code describes to bind datatable functionalities like searching, sorting and paging to our table.
// Here 'myTable' is the ID of our table
//
 
<script>
$(document).ready(function(){
    $('#myTable').dataTable();
});
</script>

Now our dataTable is ready with sorting, searching and paging.

Now we need to make the table as responsive. For that, we need to include bootstrap CSS class 'table table-striped'.

HTML
<table id="myTable" class="table table-striped" >  

or we have another method to do the same thing in responsive:

HTML
<div class="table-responsive">
<table id="myTable" class="display table" width="100%" >

//The table data come here...

</table>
</div>

That's it! The output looks like this in PC.

Image 1

The output in Smart phone is like this:

sampleoutput in mobile

Points of Interest

I love this very much. It's much simpler and it saves more time.

History

  • 26-09-2014

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
GeneralRe: About using this Pin
Member 989755416-Nov-14 7:15
Member 989755416-Nov-14 7:15 
GeneralRe: About using this Pin
Rapuru Amarendra16-Nov-14 7:22
Rapuru Amarendra16-Nov-14 7:22 
GeneralRe: About using this Pin
Member 989755416-Nov-14 7:40
Member 989755416-Nov-14 7:40 
QuestionTableTools and Editor Pin
Koushik Saha16-Nov-14 3:57
Koushik Saha16-Nov-14 3:57 
Questionhow can i add dynamic data to this table Pin
Member 1118579027-Oct-14 23:01
Member 1118579027-Oct-14 23:01 
AnswerRe: how can i add dynamic data to this table Pin
Rapuru Amarendra28-Oct-14 3:59
Rapuru Amarendra28-Oct-14 3:59 
GeneralRe: how can i add dynamic data to this table Pin
Member 1127098828-Nov-14 0:19
Member 1127098828-Nov-14 0:19 
GeneralMy vote of 4 Pin
Gun Gun Febrianza23-Oct-14 23:03
Gun Gun Febrianza23-Oct-14 23:03 
nice one Smile | :)
QuestionBootstrap pagination with First and last option. Pin
Praveen Raj S17-Oct-14 1:45
Praveen Raj S17-Oct-14 1:45 
QuestionHow does this behave when we have multiple columns Pin
Sreekanth Mothukuru26-Sep-14 22:54
Sreekanth Mothukuru26-Sep-14 22:54 
AnswerRe: How does this behave when we have multiple columns Pin
Rapuru Amarendra27-Sep-14 18:25
Rapuru Amarendra27-Sep-14 18:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.