PHP Classes

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

Recommend this page to a friend!
  Classes of Braun Okoi Boniface   eprotech   vendor/datatables/SearchPanes-2.0.2/js/searchPanes.jqueryui.js   Download  
File: vendor/datatables/SearchPanes-2.0.2/js/searchPanes.jqueryui.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,675 bytes
 

Contents

Class file image Download
/*! Bootstrap integration for DataTables' SearchPanes * ©2016 SpryMedia Ltd - datatables.net/license */ (function (factory) { if (typeof define === 'function' && define.amd) { // AMD define(['jquery', 'datatables.net-ju', '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-ju')(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, { disabledButton: 'dtsp-paneInputButton dtsp-disabledButton', paneButton: 'dtsp-paneButton ui-button', topRow: 'dtsp-topRow ui-state-default' }); $.extend(true, dataTable.SearchPanes.classes, { clearAll: 'dtsp-clearAll ui-button', collapseAll: 'dtsp-collapseAll ui-button', container: 'dtsp-searchPanes', panes: 'dtsp-panesContainer fg-toolbar ui-toolbar ui-widget-header', showAll: 'dtsp-showAll ui-button' }); return dataTable.searchPanes; }));