<!DOCTYPE html>
<html>

<head lang="en">
  <meta charset="utf-8" />
  <title>Bootstrap table supporting rich widgets</title>
  <link rel="stylesheet" type="text/css" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" />
  <link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.2.3/bootstrap-table.min.css" />
  <link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
  <link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.0.2/css/bootstrap2/bootstrap-switch.css"/>
  <link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/select2/3.5.0/select2.css">
  <link rel="stylesheet" type="text/css" href="style.css" />
  
  <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
  <script type="text/javascript" src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
  <script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/bootstrap-switch/3.0.2/js/bootstrap-switch.js"></script>
  <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-table/1.2.3/bootstrap-table.min.js"></script>
  <script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/select2/3.5.0/select2.js"></script>
  <script type="text/javascript" src="script.js"></script>
</head>

<body>
  <div class="container">
    <h2>Bootstrap table supporting add/edit data operation</h2>
    <div class="row voffset2">
      <div class="col-xs-12">
        <button class="btn btn-default btn-primary" id="addAction">
          <i class="fa fa-plus-circle" style="margin-right:5px;"></i>Add language
        </button>
      </div>
    </div>
    <div class="row">
      <div class="col-xs-12 voffset2">
        <div class="panel panel-default" id="languagePanel">
          <div class="panel-body">
            <form id="languageForm" role="form">
              <fieldset>
                <div class="form-group col-xs-12 col-sm-3">
                  <label for="language" class="control-label" style="display: block;">Language</label>
                  <input type="text" name="language" id="language" >
                </div>
                <div class="form-group col-xs-12 col-sm-2">
                  <label for="native" class="control-label" style="display: block;">Native</label>
                  <input type="checkbox" id="native" name="native">
                </div>
                <div class="form-group col-xs-12 col-sm-3">
                  <label for="level" class="control-label" style="display: block;">Level</label>
                  <input type="text" name="level" id="level">
                </div>
                <div class="form-group col-xs-12 col-sm-4">
                  <label for="lookingFor" class="control-label" style="display: block;">Looking for</label>
                  <input type="text" name="lookingFor" id="lookingFor">
                </div>
                <div class="col-xs-12 col-md-4 col-md-offset-8">
                  <div>
                    <div class="btn-group pull-right">
                      <button type="button" id="editAddPanel-cancel" class="btn btn-default btn-warning" style="width:100px">Cancel</button>
                      <button type="button" id="editAddPanel-send" class="btn btn-default btn-primary" style="width:100px">Save</button>
                    </div>
                  </div>
                </div>
              </fieldset>
            </form>
          </div>
        </div>
      </div>
    </div>
    <div class="row voffset2">
      <div class="col-xs-12">
        <table id="langTable" data-toggle="table" data-url="tabledata.json" data-sort-name="native" data-sort-order="desc" data-cache="false">
          <thead>
            <tr>
              <th data-field="id">id</th>
              <th data-field="language">Language</th>
              <th data-field="native" data-formatter="formatNativeItem" data-align="center">Native</th>
              <th data-field="level">Level</th>
              <th data-field="looking">Looking</th>
              <th data-field="operate" data-formatter="operateFormatter" data-align="center" data-events="operateEvents" data-width="100"></th>
            </tr>
          </thead>
        </table>
      </div>
    </div>
  </div>
</body>

</html>
$(document).ready(function() {

  $("#native").bootstrapSwitch();
  $("#native").on('switchChange.bootstrapSwitch', function(event, state) {
    var nativeLanguage = $("#native").bootstrapSwitch('state');
    if (nativeLanguage) {
      $('#level').select2('enable',false);
      $('#level').select2('val', '');
    } else {
      $('#level').select2('enable',true);
    }
  });
  
  var table = $("#langTable");
  $("#languagePanel").hide();

  $('#language').select2({
    placeholder: "select a new language...",
    width: '200px',
    cache: true,
    ajax: {
      url: 'language.json',
      dataType: 'json',
      quietMillis: 100,
      results: function(data) {
        var dataResults = [];
        $.each(data, function(index, item) {
          dataResults.push({
            id: item.id,
            text: item.language
          });
        });
        return {
          results: dataResults
        };
      }
    },
    initSelection: function(element, callback) {
      var data = {
        id: element.id,
        text: element.language
      };
      callback(data);
    }
  });

  $('#level').select2({
    placeholder: "your language level...",
    width: '200px',
    cache: true,
    ajax: {
      url: 'level.json',
      dataType: 'json',
      quietMillis: 100,
      results: function(data) {
        var dataResults = [];
        $.each(data, function(index, item) {
          dataResults.push({
            id: item.id,
            text: item.level
          });
        });
        return {
          results: dataResults
        };
      }
    }
  });

  $('#lookingFor').select2({
    placeholder: "you're looking for...",
    width: '250px',
    multiple: true,
    cache: true,
    ajax: {
      url: 'looking.json',
      dataType: 'json',
      quietMillis: 100,
      results: function(data) {
        var dataResults = [];
        $.each(data, function(index, item) {
          dataResults.push({
            id: item.id,
            text: item.role
          });
        });
        return {
          results: dataResults
        };
      }
    }
  });

  table.bootstrapTable();
  table.on('load-success.bs.table', function(event, data) {
    $(this).bootstrapTable('hideColumn', 'id');
  });

  $("#addAction").click(function(event) {
    $("#languagePanel").show(750);
    
    var panelData = {
                      language: {
                        id: 0, 
                        text: ''
                      },
                      native: false,
                      level: {
                        id: '0',
                        text: ''
                      }
                    };
    setLanguageForm(panelData);
  });

  $("#editAddPanel-cancel").click(function(event) {
    $("#languagePanel").hide(750);
  });

  $("#editAddPanel-send").on('click', function(event) {
    var lookingData = $("#lookingFor").select2('data');
    var lookingForValueArray = [];
    $.each(lookingData, function (index, item) {
      lookingForValueArray.push(item.text);
    });
    var lookingForValue = lookingForValueArray.join();
    var nativeLan = $("#native").bootstrapSwitch('state');
    var levelLan = "Native";
    if (!native) {
      levelLan = $("#level").select2('data').text;
    }
    var row = {
      id: $("#language").select2('val'),
      language: $("#language").select2('data').text,
      native: nativeLan,
      level: levelLan,
      looking: lookingForValue
    };
    table.bootstrapTable('append', row);
    $("#languagePanel").hide(750);
  });


});

function formatNativeItem(value, row, index) {
  if (value) {
    return ['<i class="fa fa-check fa-2x" style="color: green;"></i>'];
  } else {
    return ['<i class="fa fa-remove fa-2x" style="color: red;"></i>'];
  }
}

function operateFormatter(value, row, index) {
  return ['<a class="lan-remove" href="javascript:void(0);" title="Remove">',
    '<i class="fa fa-trash fa-2x pull-right" style="margin-right:5px"></i>',
    '</a>',
    '<a class="lan-edit" href="javascript:void(0);" title="Edit">',
    '<i class="fa fa-pencil-square-o fa-2x pull-right"></i>',
    '</a>'].join(' ');
}

function setLanguageForm(panelData) {
  $("#language").select2('data', panelData.language);
  $("#native").bootstrapSwitch('state', panelData.native);
  $("#level").select2('data', panelData.level);
  $("#lookingFor").select2('data', panelData.looking);
}

window.operateEvents = {
  "click .lan-remove": function(event, value, row, index) {
    var table = $("#langTable");
    var arrayIds = [];
    arrayIds.push(row.id);
    table.bootstrapTable('remove', {
      field: 'id',
      values: arrayIds
    });
  },
  "click .lan-edit": function(event, value, row, index) {
    $("#languagePanel").show(750);
    var lookingData = row.looking.split(',');
    var lookingJSON = [];
    $.each(lookingData, function(index, chunk) {
      var lookingItem = { id: index, text: chunk };
      lookingJSON.push(lookingItem);
    });
    var panelData = {
                      language: {
                        id: row.id, 
                        text: row.language
                      },
                      native: row.native,
                      level: {
                        id: '0',
                        text: row.level
                      },
                      looking: lookingJSON
                    };
    setLanguageForm(panelData);
    $('html, body').animate({
      scrollTop: $("#languagePanel").offset().top
    }, 500);
  }
};
.modal-success {
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#dff0d8), to(#c8e5bc));
  background-image: -webkit-linear-gradient(#dff0d8 0%, #c8e5bc 100%);
  background-image: -moz-linear-gradient(#dff0d8 0%, #c8e5bc 100%);
  background-image: -o-linear-gradient(#dff0d8 0%, #c8e5bc 100%);
  background-image: linear-gradient(#dff0d8 0%, #c8e5bc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
  border-color: #b2dba1;
  border-radius: 6px 6px 0 0;
}
.modal-info {
  background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#d9edf7), to(#b9def0));
  background-image: -webkit-linear-gradient(#d9edf7 0%, #b9def0 100%);
  background-image: -moz-linear-gradient(#d9edf7 0%, #b9def0 100%);
  background-image: -o-linear-gradient(#d9edf7 0%, #b9def0 100%);
  background-image: linear-gradient(#d9edf7 0%, #b9def0 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
  border-color: #9acfea;
  border-radius: 6px 6px 0 0;
}
.modal-warning {
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fcf8e3), to(#f8efc0));
  background-image: -webkit-linear-gradient(#fcf8e3 0%, #f8efc0 100%);
  background-image: -moz-linear-gradient(#fcf8e3 0%, #f8efc0 100%);
  background-image: -o-linear-gradient(#fcf8e3 0%, #f8efc0 100%);
  background-image: linear-gradient(#fcf8e3 0%, #f8efc0 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
  border-color: #f5e79e;
  border-radius: 6px 6px 0 0;
}
.modal-danger {
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2dede), to(#e7c3c3));
  background-image: -webkit-linear-gradient(#f2dede 0%, #e7c3c3 100%);
  background-image: -moz-linear-gradient(#f2dede 0%, #e7c3c3 100%);
  background-image: -o-linear-gradient(#f2dede 0%, #e7c3c3 100%);
  background-image: linear-gradient(#f2dede 0%, #e7c3c3 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
  border-color: #dca7a7;
  border-radius: 6px 6px 0 0;
}

.voffset { margin-top: 2px; }
.voffset1 { margin-top: 5px; }
.voffset2 { margin-top: 10px; }
.voffset3 { margin-top: 15px; }
.voffset4 { margin-top: 30px; }
.voffset5 { margin-top: 40px; }
.voffset6 { margin-top: 60px; }
.voffset7 { margin-top: 80px; }
.voffset8 { margin-top: 100px; }
.voffset9 { margin-top: 150px; }



## Bootstrap-table complete example
+ Iconified column
+ Operate actions column
+ Edit and Add form included
+ Select remote load (advanced bootstrap-select widget)
+ Advanced bootstrap switch widget
Copyright (c) 2014, Miguel Maquieira
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
 - Redistributions of source code must retain the above copyright notice, this 
 list of conditions and the following disclaimer.
 - Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
 - The names of its contributors will not be used to endorse or promote products
derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
[
    {
        "id": 0,
        "language": "English"
    },
    {
        "id": 1,
        "language": "Spanish"
    },
    {
        "id": 2,
        "language": "French"
    },
    {
        "id": 3,
        "language": "German"
    },
    {
        "id": 4,
        "language": "Russian"
    },
    {
        "id": 5,
        "language": "Portuguese"
    }
]
[
    {
        "id": "N",
        "level": "Native"
    },
    {
        "id": "C1",
        "level": "C1:Beginner"
    },
    {
        "id": "C2",
        "level": "C2:Elementary"
    },
    {
        "id": "B1",
        "level": "B1:Pre-intermediate"
    },
    {
        "id": "B2",
        "level": "B2:Intermediate"
    },
    {
        "id": "A1",
        "level": "A1:Upper-Intermediate"
    },
    {
        "id": "A2",
        "level": "A2:Advanced"
    }
]
[
    {
        "id": 0,
        "role": "Partners"
    },
    {
        "id": 1,
        "role": "Teachers"
    },
    {
        "id": 2,
        "role": "Tutors"
    }
]
[
    {
        "id": 0,
        "language": "English",
        "native": true,
        "level": "Native",
        "looking": "Partners"

    },
    {
        "id": 1,
        "language": "Spanish",
        "native": true,
        "level": "Native",
        "looking": "Partners"
    },
    {
        "id": 2,
        "language": "Portuguese",
        "native": false,
        "level": "B1:Pre-intermediate",
        "looking": "Partners"
    },
    {
        "id": 3,
        "language": "Galician Language",
        "native": true,
        "level": "A1:Upper-intermediate",
        "looking": "Partners"
    },
    {
        "id": 4,
        "language": "French",
        "native": false,
        "level": "C1:Beginner",
        "looking": "Tutors"
    },
    {
        "id": 5,
        "language": "German",
        "native": false,
        "level": "C1:Beginner",
        "looking": "Teacher,Tutors"
    },
    {
        "id": 6,
        "language": "Russian",
        "native": false,
        "level": "C1:Beginner",
        "looking": "Teachers,Partners"
    }
]