Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The Downloadlinks for the current version are:

 

Bootstrap: http://getbootstrap.com/getting-started/#download

Datatables: https://datatables.net/download /index

Info
titleDatatables Kombifiles
Expand
titleclick here to expand...

The DataTables package has a lot of features and for each feature there is a corresponding CSS and JS File. However on the linked Site it is possible to generate one CSS and JS file with the desired features. This is advantageous, because fewer HTTP Requests are needed.

Currently (as of Jan-2017) the activated options are: The changed options are printed bold

  • jQuery: no jQuery (could be included to reduce HTTP Requests further)
  • Styling: Bootstrap
    • no styling library
  • DataTables: DataTables
  • AutoFill: Do not include
  • Buttons: Buttons
    • Column visibility: Do not include
    • Flash export: Do not include
    • HTML5 export: HTML5 export
      • JSZip: Do not include
      • pdfmake: pdfmake
    • Print view: Print view
  • ColReorder: Do not include
  • Editor: Do not include
  • FixedColumns: Do not include
  • FixedHeader: Do not include
  • KeyTable: Do not include
  • Responsive: Responsive
  • RowReorder: Do not include
  • Scroller: Scroller
  • Select: Select
  • Minification: Minify
  • Concatenate: Single File
  • CDN: CDN or Local files -> own preference

jQuery: https://code.jquery.com/jquery/ 

The implementation is done in views/bootstrap/header.blade.php (for CSS) and views/bootstrap/footer.blade.php (JS) Files. There are several ways to implement these Frameworks, such as via cdn, by downloading the corresponding files or composer.

...

Code Block
languagephp
titleExample JS implementation (Footer)
collapsetrue
<script 
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

...