PHP Classes

File: vendor/datatables/SearchPanes-2.0.2/js/searchPanes.bootstrap.js

Recommend this page to a friend!
  Classes of Braun Okoi Boniface   eprotech   vendor/datatables/SearchPanes-2.0.2/js/searchPanes.bootstrap.js   Download  
File: vendor/datatables/SearchPanes-2.0.2/js/searchPanes.bootstrap.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: eprotech
Application to access medical product suppliers
Author: By
Last change:
Date: 1 year ago
Size: 1,876 bytes
 

Contents

Class file image Download
(function (factory) { if (typeof define === 'function' && define.amd) { // AMD define(['jquery', 'datatables.net-bs', 'datatables.net-searchpanes'], function ($) { return factory($); }); } else if (typeof exports === 'object') { // CommonJS module.exports = function (root, $) { if (!root) { root = window; } if (!$ || !$.fn.dataTable) { // eslint-disable-next-line @typescript-eslint/no-var-requires $ = require('datatables.net-bs')(root, $).$; } if (!$.fn.dataTable.SearchPanes) { // eslint-disable-next-line @typescript-eslint/no-var-requires require('datatables.net-searchpanes')(root, $); } return factory($); }; } else { // Browser factory(jQuery); } }(function ($) { 'use strict'; var dataTable = $.fn.dataTable; $.extend(true, dataTable.SearchPane.classes, { buttonGroup: 'btn-group', disabledButton: 'disabled', narrow: 'col narrow', narrowSub: 'row', pane: { container: 'table' }, paneButton: 'btn btn-light', pill: 'badge badge-pill badge-light pill', search: 'col-sm form-control search', searchCont: 'input-group dtsp-searchCont', searchLabelCont: 'input-group-btn', subRow1: 'dtsp-subRow1 text-right', subRow2: 'dtsp-subRow2 text-right', table: 'table table-condensed' }); $.extend(true, dataTable.SearchPanes.classes, { clearAll: 'dtsp-clearAll btn btn-light', collapseAll: 'dtsp-collapseAll btn btn-light', disabledButton: 'disabled', showAll: 'dtsp-showAll btn btn-light' }); return dataTable.searchPanes; }));