buttons.bootstrap4.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*! Bootstrap integration for DataTables' Buttons
  2. * ©2016 SpryMedia Ltd - datatables.net/license
  3. */
  4. (function( factory ){
  5. if ( typeof define === 'function' && define.amd ) {
  6. // AMD
  7. define( ['jquery', 'datatables.net-bs4', 'datatables.net-buttons'], function ( $ ) {
  8. return factory( $, window, document );
  9. } );
  10. }
  11. else if ( typeof exports === 'object' ) {
  12. // CommonJS
  13. module.exports = function (root, $) {
  14. if ( ! root ) {
  15. root = window;
  16. }
  17. if ( ! $ || ! $.fn.dataTable ) {
  18. $ = require('datatables.net-bs4')(root, $).$;
  19. }
  20. if ( ! $.fn.dataTable.Buttons ) {
  21. require('datatables.net-buttons')(root, $);
  22. }
  23. return factory( $, root, root.document );
  24. };
  25. }
  26. else {
  27. // Browser
  28. factory( jQuery, window, document );
  29. }
  30. }(function( $, window, document, undefined ) {
  31. 'use strict';
  32. var DataTable = $.fn.dataTable;
  33. $.extend( true, DataTable.Buttons.defaults, {
  34. dom: {
  35. container: {
  36. className: 'dt-buttons btn-group flex-wrap'
  37. },
  38. button: {
  39. className: 'btn btn-secondary'
  40. },
  41. collection: {
  42. tag: 'div',
  43. className: 'dropdown-menu',
  44. button: {
  45. tag: 'a',
  46. className: 'dt-button dropdown-item',
  47. active: 'active',
  48. disabled: 'disabled'
  49. }
  50. }
  51. },
  52. buttonCreated: function ( config, button ) {
  53. return config.buttons ?
  54. $('<div class="btn-group"/>').append(button) :
  55. button;
  56. }
  57. } );
  58. DataTable.ext.buttons.collection.className += ' dropdown-toggle';
  59. DataTable.ext.buttons.collection.rightAlignClassName = 'dropdown-menu-right';
  60. return DataTable.Buttons;
  61. }));