commit
68a228faf0
@ -0,0 +1,22 @@
|
||||
/**
|
||||
* When using `-init deferRender` you might find that under a specific set of circumstances you
|
||||
* need the `-tag tr` element for a row which hasn't yet been drawn. This method can be used to
|
||||
* create the nodes for the rows which haven't yet been drawn.
|
||||
*
|
||||
* @name rows().generate()
|
||||
* @summary Create tr elements for rows which have not yet had their nodes created.
|
||||
* @author [Allan Jardine](http://datatables.net)
|
||||
* @requires DataTables 1.10+
|
||||
*
|
||||
* @returns {DataTable.Api} DataTables API instance
|
||||
*
|
||||
* @example
|
||||
* // Create nodes for all rows
|
||||
* table.rows().generate();
|
||||
*/
|
||||
|
||||
$.fn.dataTable.Api.register( 'rows().generate()', function () {
|
||||
return this.iterator( 'row', function ( context, index ) {
|
||||
context.oApi._fnCreateTr( context, index );
|
||||
} );
|
||||
} );
|
@ -0,0 +1,113 @@
|
||||
/*! Download button for Buttons
|
||||
* 2018 SpryMedia Ltd - MIT licensed - datatables.net/license
|
||||
*/
|
||||
|
||||
/**
|
||||
* @summary Download Button
|
||||
* @author SpryMedia Ltd (www.datatables.net)
|
||||
* @copyright Copyright 2018 SpryMedia Ltd.
|
||||
*
|
||||
* License MIT - http://datatables.net/license/mit
|
||||
*
|
||||
* A button that can be used to trigger a server-side action, typically a
|
||||
* download of a file generated by the server. If server-side processing
|
||||
* is enabled in the host table it will automatically add the last parameters
|
||||
* used for a table draw allowing the script to output a file with the same
|
||||
* order / search applied as the main table.
|
||||
*
|
||||
* This is particularly useful when using server-side processing and wishing
|
||||
* to allow user export of the data in a table. The default Buttons package
|
||||
* will only export the data available on the client-side, while this button
|
||||
* can be used to let the server generate the required file and then download
|
||||
* it to the client-side.
|
||||
*
|
||||
* @example
|
||||
* // Download button
|
||||
* var table = $('#example').DataTable({
|
||||
* dom: 'Bfrtip',
|
||||
* buttons: [
|
||||
* {
|
||||
* extend: 'download',
|
||||
* url: '/api/download'
|
||||
* }
|
||||
* ]
|
||||
* });
|
||||
*/
|
||||
(function(window, document, $, undefined) {
|
||||
function flattenJson(data, name, flattened) {
|
||||
if (!flattened) {
|
||||
flattened = {};
|
||||
}
|
||||
|
||||
if (!name) {
|
||||
name = '';
|
||||
}
|
||||
|
||||
if ($.isPlainObject(data) || $.isArray(data)) {
|
||||
$.each(data, function(idx, val) {
|
||||
if (name === '') {
|
||||
flattenJson(val, idx, flattened);
|
||||
} else {
|
||||
flattenJson(val, name + '[' + idx + ']', flattened);
|
||||
}
|
||||
});
|
||||
} else {
|
||||
flattened[name] = data;
|
||||
}
|
||||
|
||||
return flattened;
|
||||
}
|
||||
|
||||
$.fn.dataTable.ext.buttons.download = {
|
||||
text: 'Download',
|
||||
action: function(e, dt, node, config) {
|
||||
// Gather information to be submitted
|
||||
var data = {};
|
||||
|
||||
if (dt.page.info().serverSide) {
|
||||
$.extend(data, dt.ajax.params());
|
||||
}
|
||||
|
||||
if (typeof config.data === 'function') {
|
||||
config.data(data);
|
||||
} else if (typeof config.data === 'object') {
|
||||
$.extend(data, config.data);
|
||||
}
|
||||
|
||||
// Convert data to a flat structure for submission
|
||||
var flattened = flattenJson(data);
|
||||
|
||||
// Create an iframe
|
||||
var iframe = $('<iframe/>')
|
||||
.css({
|
||||
border: 'none',
|
||||
height: 0,
|
||||
width: 0
|
||||
})
|
||||
.appendTo(document.body);
|
||||
|
||||
var contentDoc = iframe[0].contentWindow.document;
|
||||
contentDoc.open();
|
||||
contentDoc.close();
|
||||
|
||||
var form = $('<form/>', contentDoc)
|
||||
.attr('method', config.type)
|
||||
.attr('action', config.url)
|
||||
.appendTo(contentDoc.body);
|
||||
|
||||
$.each(flattened, function(name, val) {
|
||||
$('<input/>', contentDoc)
|
||||
.attr('type', 'text')
|
||||
.attr('name', name)
|
||||
.attr('autocomplete', 'no')
|
||||
.val(val)
|
||||
.appendTo(form);
|
||||
});
|
||||
|
||||
form.submit();
|
||||
},
|
||||
url: '',
|
||||
type: 'POST',
|
||||
data: {}
|
||||
};
|
||||
})(window, document, jQuery);
|
@ -1,17 +1,8 @@
|
||||
/*!
|
||||
Copyright 2014 SpryMedia Ltd.
|
||||
|
||||
License MIT - http://datatables.net/license/mit
|
||||
|
||||
For more detailed information please see:
|
||||
http://datatables.net/blog/2014-09-22
|
||||
AlphabetSearch for DataTables v1.0.0
|
||||
2014 SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(a,d,b){a instanceof String&&(a=String(a));for(var c=a.length,e=0;e<c;e++){var g=a[e];if(d.call(b,g,e,a))return{i:e,v:g}}return{i:-1,v:void 0}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(a,d,b){a!=Array.prototype&&a!=Object.prototype&&(a[d]=b.value)};
|
||||
$jscomp.getGlobal=function(a){return"undefined"!=typeof window&&window===a?a:"undefined"!=typeof global&&null!=global?global:a};$jscomp.global=$jscomp.getGlobal(this);$jscomp.polyfill=function(a,d,b,c){if(d){b=$jscomp.global;a=a.split(".");for(c=0;c<a.length-1;c++){var e=a[c];e in b||(b[e]={});b=b[e]}a=a[a.length-1];c=b[a];d=d(c);d!=c&&null!=d&&$jscomp.defineProperty(b,a,{configurable:!0,writable:!0,value:d})}};
|
||||
$jscomp.polyfill("Array.prototype.find",function(a){return a?a:function(a,b){return $jscomp.findInternal(this,a,b).v}},"es6-impl","es3");
|
||||
(function(){function a(a,b){b.empty();b.append("Search: ");var c=a.column(0).data();a={};for(var d=0,g=c.length;d<g;d++){var f=c[d].toString().replace(/<.*?>/g,"").charAt(0).toUpperCase();a[f]?a[f]++:a[f]=1}$('<span class="clear active"/>').data("letter","").data("match-count",c.length).html("None").appendTo(b);for(c=0;26>c;c++)f=String.fromCharCode(65+c),$("<span/>").data("letter",f).data("match-count",a[f]||0).addClass(a[f]?"":"empty").html(f).appendTo(b);$('<div class="alphabetInfo"></div>').appendTo(b)}
|
||||
$.fn.dataTable.Api.register("alphabetSearch()",function(a){this.iterator("table",function(b){b.alphabetSearch=a});return this});$.fn.dataTable.Api.register("alphabetSearch.recalc()",function(d){this.iterator("table",function(b){a(new $.fn.dataTable.Api(b),$("div.alphabet",this.table().container()))});return this});$.fn.dataTable.ext.search.push(function(a,b){return a.alphabetSearch&&b[0].charAt(0)!==a.alphabetSearch?!1:!0});$.fn.dataTable.AlphabetSearch=function(d){var b=new $.fn.dataTable.Api(d),
|
||||
c=$('<div class="alphabet"/>');a(b,c);c.on("click","span",function(){c.find(".active").removeClass("active");$(this).addClass("active");b.alphabetSearch($(this).data("letter")).draw()});c.on("mouseenter","span",function(){c.find("div.alphabetInfo").css({opacity:1,left:$(this).position().left,width:$(this).width()}).html($(this).data("match-count"))}).on("mouseleave","span",function(){c.find("div.alphabetInfo").css("opacity",0)});this.node=function(){return c}};$.fn.DataTable.AlphabetSearch=$.fn.dataTable.AlphabetSearch;
|
||||
$.fn.dataTable.ext.feature.push({fnInit:function(a){return(new $.fn.dataTable.AlphabetSearch(a)).node()},cFeature:"A"})})();
|
||||
(function(){function f(b,c){c.empty();c.append("Search: ");for(var a=b.column(0).data(),d,e={},g=0,f=a.length;g<f;g++)d=a[g].toString().replace(/<.*?>/g,"").charAt(0).toUpperCase(),e[d]?e[d]++:e[d]=1;$('<span class="clear active"/>').data("letter","").data("match-count",a.length).html("None").appendTo(c);for(a=0;26>a;a++)d=String.fromCharCode(65+a),$("<span/>").data("letter",d).data("match-count",e[d]||0).addClass(!e[d]?"empty":"").html(d).appendTo(c);$('<div class="alphabetInfo"></div>').appendTo(c)}
|
||||
$.fn.dataTable.Api.register("alphabetSearch()",function(b){this.iterator("table",function(c){c.alphabetSearch=b});return this});$.fn.dataTable.Api.register("alphabetSearch.recalc()",function(){this.iterator("table",function(b){f(new $.fn.dataTable.Api(b),$("div.alphabet",this.table().container()))});return this});$.fn.dataTable.ext.search.push(function(b,c){return!b.alphabetSearch||c[0].charAt(0)===b.alphabetSearch?!0:!1});$.fn.dataTable.AlphabetSearch=function(b){var c=new $.fn.dataTable.Api(b),
|
||||
a=$('<div class="alphabet"/>');f(c,a);a.on("click","span",function(){a.find(".active").removeClass("active");$(this).addClass("active");c.alphabetSearch($(this).data("letter")).draw()});a.on("mouseenter","span",function(){a.find("div.alphabetInfo").css({opacity:1,left:$(this).position().left,width:$(this).width()}).html($(this).data("match-count"))}).on("mouseleave","span",function(){a.find("div.alphabetInfo").css("opacity",0)});this.node=function(){return a}};$.fn.DataTable.AlphabetSearch=$.fn.dataTable.AlphabetSearch;
|
||||
$.fn.dataTable.ext.feature.push({fnInit:function(b){return(new $.fn.dataTable.AlphabetSearch(b)).node()},cFeature:"A"})})();
|
||||
|
@ -1,42 +1,5 @@
|
||||
/*!
|
||||
Copyright 2017 SpryMedia Ltd.
|
||||
|
||||
License MIT - http://datatables.net/license/mit
|
||||
|
||||
This feature plug-in for DataTables provides a function which will
|
||||
take DataTables options from the browser's URL search string and
|
||||
return an object that can be used to construct a DataTable. This
|
||||
allows deep linking to be easily implemented with DataTables - for
|
||||
example a URL might be `myTable?displayStart=10` which will
|
||||
automatically cause the second page of the DataTable to be displayed.
|
||||
|
||||
This plug-in works on a whitelist basis - you must specify which
|
||||
[initialisation parameters](//datatables.net/reference/option) you
|
||||
want the URL search string to specify. Any parameter given in the
|
||||
URL which is not listed will be ignored (e.g. you are unlikely to
|
||||
want to let the URL search string specify the `ajax` option).
|
||||
|
||||
This specification is done by passing an array of property names
|
||||
to the `$.fn.dataTable.ext.deepLink` function. If you do which to
|
||||
allow _every_ parameter (I wouldn't recommend it) you can use `all`
|
||||
instead of an array.
|
||||
|
||||
@example
|
||||
// Allow a display start point and search string to be specified
|
||||
$('#myTable').DataTable(
|
||||
$.fn.dataTable.ext.deepLink( [ 'displayStart', 'search.search' ] )
|
||||
);
|
||||
|
||||
@example
|
||||
// As above, but with a default search
|
||||
var options = $.fn.dataTable.ext.deepLink(['displayStart', 'search.search']);
|
||||
|
||||
$('#myTable').DataTable(
|
||||
$.extend( true, {
|
||||
search: { search: 'Initial search value' }
|
||||
}, options )
|
||||
);
|
||||
Deep linking options parsing support for DataTables
|
||||
2017 SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
(function(l,m,b,n){var h=b.fn.dataTable.ext.internal._fnSetObjectDataFn;b.fn.dataTable.ext.deepLink=function(d){for(var e=location.search.replace(/^\?/,"").split("&"),f={},c=0,k=e.length;c<k;c++){var a=e[c].split("="),g=decodeURIComponent(a[0]),a=decodeURIComponent(a[1]);if("true"===a)a=!0;else if("false"===a)a=!1;else if(!a.match(/[^\d]/))a*=1;else if(0===a.indexOf("{")||0===a.indexOf("["))try{a=b.parseJSON(a)}catch(p){}"all"!==d&&-1===b.inArray(g,d)||h(g)(f,a)}return f}})(window,document,jQuery);
|
||||
(function(h,k,b){var i=b.fn.dataTable.ext.internal._fnSetObjectDataFn;b.fn.dataTable.ext.deepLink=function(d){for(var e=location.search.replace(/^\?/,"").split("&"),f={},c=0,j=e.length;c<j;c++){var a=e[c].split("="),g=decodeURIComponent(a[0]),a=decodeURIComponent(a[1]);if("true"===a)a=!0;else if("false"===a)a=!1;else if(a.match(/[^\d]/)){if(0===a.indexOf("{")||0===a.indexOf("["))try{a=b.parseJSON(a)}catch(h){}}else a*=1;("all"===d||-1!==b.inArray(g,d))&&i(g)(f,a)}return f}})(window,document,jQuery);
|
||||
|
@ -1,25 +1,6 @@
|
||||
/*!
|
||||
Copyright 2014 SpryMedia Ltd.
|
||||
|
||||
License MIT - http://datatables.net/license/mit
|
||||
|
||||
This feature plug-in for DataTables adds page length control links to the
|
||||
DataTable. The `dom` option can be used to insert the control using the `L`
|
||||
character option and it uses the `lengthMenu` options of DataTables to
|
||||
determine what to display.
|
||||
|
||||
@example
|
||||
$('#myTable').DataTable( {
|
||||
dom: 'Lfrtip'
|
||||
} );
|
||||
|
||||
@example
|
||||
$('#myTable').DataTable( {
|
||||
lengthMenu: [ [10, 25, 50, -1], [10, 25, 50, "All"] ]
|
||||
dom: 'Lfrtip'
|
||||
} );
|
||||
Page length control via links for DataTables
|
||||
2014 SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
(function(k,l,a,m){a.fn.dataTable.LengthLinks=function(d){var c=new a.fn.dataTable.Api(d),f=c.settings()[0],e=a("<div></div>").addClass(f.oClasses.sLength),h=null;this.container=function(){return e[0]};e.on("click.dtll","a",function(b){b.preventDefault();c.page.len(1*a(this).data("length")).draw(!1)});c.on("draw",function(){if(c.page.len()!==h){var b=f.aLengthMenu,d=2===b.length&&a.isArray(b[0])?b[1]:b,g=2===b.length&&a.isArray(b[0])?b[0]:b,b=a.map(g,function(b,a){return b==c.page.len()?'<a class="active" data-length="'+
|
||||
(function(i,j,a){a.fn.dataTable.LengthLinks=function(d){var c=new a.fn.dataTable.Api(d),f=c.settings()[0],e=a("<div></div>").addClass(f.oClasses.sLength),h=null;this.container=function(){return e[0]};e.on("click.dtll","a",function(b){b.preventDefault();c.page.len(1*a(this).data("length")).draw(!1)});c.on("draw",function(){if(c.page.len()!==h){var b=f.aLengthMenu,d=2===b.length&&a.isArray(b[0])?b[1]:b,g=2===b.length&&a.isArray(b[0])?b[0]:b,b=a.map(g,function(b,a){return b==c.page.len()?'<a class="active" data-length="'+
|
||||
g[a]+'">'+d[a]+"</a>":'<a data-length="'+g[a]+'">'+d[a]+"</a>"});e.html(f.oLanguage.sLengthMenu.replace("_MENU_",b.join(" | ")));h=c.page.len()}});c.on("destroy",function(){e.off("click.dtll","a")})};a.fn.dataTable.ext.feature.push({fnInit:function(d){return(new a.fn.dataTable.LengthLinks(d)).container()},cFeature:"L",sFeature:"LengthLinks"})})(window,document,jQuery);
|
||||
|
@ -1,30 +1,8 @@
|
||||
/*!
|
||||
Copyright 2015 SpryMedia Ltd.
|
||||
|
||||
License MIT - http://datatables.net/license/mit
|
||||
|
||||
This feature plug-in for DataTables will automatically change the DataTables
|
||||
page length in order to fit inside its container. This can be particularly
|
||||
useful for control panels and other interfaces which resize dynamically with
|
||||
the user's browser window instead of scrolling.
|
||||
|
||||
Page resizing in DataTables can be enabled by using any one of the following
|
||||
options:
|
||||
|
||||
* Adding the class `pageResize` to the HTML table
|
||||
* Setting the `pageResize` parameter in the DataTables initialisation to
|
||||
be true - i.e. `pageResize: true`
|
||||
* Setting the `pageResize` parameter to be true in the DataTables
|
||||
defaults (thus causing all tables to have this feature) - i.e.
|
||||
`$.fn.dataTable.defaults.pageResize = true`.
|
||||
* Creating a new instance: `new $.fn.dataTable.PageResize( table );` where
|
||||
`table` is a DataTable's API instance.
|
||||
|
||||
For more detailed information please see:
|
||||
http://datatables.net/blog/2015-04-10
|
||||
PageResize for DataTables v1.0.0
|
||||
2015 SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
(function(b){var e=function(a,c){var d=a.table();this.s={dt:a,host:b(d.container()).parent(),header:b(d.header()),footer:b(d.footer()),body:b(d.body()),container:b(d.container()),table:b(d.node()),delta:c};a=this.s.host;"static"===a.css("position")&&a.css("position","relative");this._attach();this._size()};e.prototype={_size:function(){var a=this.s,c=a.dt,d=c.table(),h=b(a.table).offset().top,e=b("tr",a.body).eq(0).height(),f=a.host.height(),k=d.header().parentNode!==d.body().parentNode,g=a.delta;
|
||||
k||(d.header()&&(f-=a.header.height()),d.footer()&&(f-=a.footer.height()));f=f-h-(a.container.height()-(h+a.table.height()));!isNaN(parseFloat(g))&&isFinite(g)&&(f-=g);a=Math.floor(f/e);Infinity!==a&&-Infinity!==a&&!isNaN(a)&&0<a&&a!==c.page.len()&&c.page.len(a).draw()},_attach:function(){var a=this,c=b("<object/>").css({position:"absolute",top:0,left:0,height:"100%",width:"100%",zIndex:-1}).attr("type","text/html");c[0].onload=function(){var b=this.contentDocument.body,c=b.offsetHeight;this.contentDocument.defaultView.onresize=
|
||||
function(){var d=b.clientHeight||b.offsetHeight;d!==c&&(c=d,a._size())}};c.appendTo(this.s.host).attr("data","about:blank")}};b.fn.dataTable.PageResize=e;b.fn.DataTable.PageResize=e;b(document).on("init.dt",function(a,c){"dt"===a.namespace&&(a=new b.fn.dataTable.Api(c),(b(a.table().node()).hasClass("pageResize")||c.oInit.pageResize||b.fn.dataTable.defaults.pageResize)&&new e(a,c.oInit.pageResizeManualDelta))})})(jQuery);
|
||||
(function(b){"function"===typeof define&&define.amd?define(["jquery","datatables.net"],function(e){return b(e,window,document)}):"object"===typeof exports?module.exports=function(e,c){e||(e=window);if(!c||!c.fn.dataTable)c=require("datatables.net")(e,c).$;return b(c,e,e.document)}:b(jQuery,window,document)})(function(b,e,c){var g=function(a,h){var d=a.table();this.s={dt:a,host:b(d.container()).parent(),header:b(d.header()),footer:b(d.footer()),body:b(d.body()),container:b(d.container()),table:b(d.node()),
|
||||
delta:h};d=this.s.host;"static"===d.css("position")&&d.css("position","relative");this._attach();this._size()};g.prototype={_size:function(){var a=this.s,h=a.dt,d=h.table(),e=b(a.table).offset().top,c=b("tr",a.body),c=c.eq(1<c.length?1:0).height(),f=a.host.height(),g=d.header().parentNode!==d.body().parentNode,i=a.delta;g||(d.header()&&(f-=a.header.height()),d.footer()&&(f-=a.footer.height()));f=f-e-(a.container.height()-(e+a.table.height()));!isNaN(parseFloat(i))&&isFinite(i)&&(f-=i);a=Math.floor(f/
|
||||
c);Infinity!==a&&(-Infinity!==a&&!isNaN(a)&&0<a&&a!==h.page.len())&&h.page.len(a).draw()},_attach:function(){var a=this,c=b("<object/>").css({position:"absolute",top:0,left:0,height:"100%",width:"100%",zIndex:-1}).attr("type","text/html");c[0].onload=function(){var d=this.contentDocument.body,b=d.offsetHeight;this.contentDocument.defaultView.onresize=function(){var c=d.clientHeight||d.offsetHeight;c!==b&&(b=c,a._size())}};c.appendTo(this.s.host).attr("data","about:blank")}};b.fn.dataTable.PageResize=
|
||||
g;b.fn.DataTable.PageResize=g;b(c).on("init.dt",function(a,c){if("dt"===a.namespace){var d=new b.fn.dataTable.Api(c);(b(d.table().node()).hasClass("pageResize")||c.oInit.pageResize||b.fn.dataTable.defaults.pageResize)&&new g(d,c.oInit.pageResizeManualDelta)}})});
|
||||
|
@ -0,0 +1,112 @@
|
||||
/*! RowFill for DataTables v1.0.0
|
||||
* 2018 SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
|
||||
/**
|
||||
* @summary RowFill
|
||||
* @description Match the number of rows in a table to the page length
|
||||
* @version 1.0.0
|
||||
* @file dataTables.rowFill.js
|
||||
* @author SpryMedia Ltd (www.sprymedia.co.uk)
|
||||
* @contact www.sprymedia.co.uk/contact
|
||||
* @copyright Copyright 2018 SpryMedia Ltd.
|
||||
*
|
||||
* License MIT - http://datatables.net/license/mit
|
||||
*
|
||||
* This feature plug-in for DataTables will automatically insert temporary rows
|
||||
* into a DataTable that draws a page that is less than the configured page
|
||||
* length. This can be handy to ensure that your table always as (e.g.) 10 rows
|
||||
* visible.
|
||||
*
|
||||
* Filler rows have the class `dt-rowFill--filler` assigned to them allowing for
|
||||
* additional styling (e.g. reducing opacity).
|
||||
*
|
||||
* To enable for a table add `rowFill: true` to your DataTables configuration.
|
||||
*/
|
||||
(function(factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD
|
||||
define(['jquery', 'datatables.net'], function($) {
|
||||
return factory($, window, document);
|
||||
});
|
||||
} else if (typeof exports === 'object') {
|
||||
// CommonJS
|
||||
module.exports = function(root, $) {
|
||||
if (!root) {
|
||||
root = window;
|
||||
}
|
||||
|
||||
if (!$ || !$.fn.dataTable) {
|
||||
$ = require('datatables.net')(root, $).$;
|
||||
}
|
||||
|
||||
return factory($, root, root.document);
|
||||
};
|
||||
} else {
|
||||
// Browser
|
||||
factory(jQuery, window, document);
|
||||
}
|
||||
})(function($, window, document, undefined) {
|
||||
'use strict';
|
||||
|
||||
var RowFill = function(dt, pageResizeManualDelta) {
|
||||
var table = dt.table();
|
||||
|
||||
this.s = {
|
||||
dt: dt,
|
||||
body: $(table.body())
|
||||
};
|
||||
|
||||
this._attach();
|
||||
};
|
||||
|
||||
RowFill.prototype = {
|
||||
_attach: function() {
|
||||
var dt = this.s.dt;
|
||||
var body = this.s.body;
|
||||
|
||||
dt.on('draw', function() {
|
||||
var colspan = dt.columns(':visible').count();
|
||||
var rowCount = dt.rows({ page: 'current' }).count();
|
||||
var class1 = 'even';
|
||||
var class2 = 'odd';
|
||||
|
||||
// Take account of the fact that DataTables will show a "Nothing found" row
|
||||
// for an empty record set
|
||||
if (rowCount === 0) {
|
||||
rowCount = 1;
|
||||
}
|
||||
|
||||
// Reverse for continuation from the DataTable rows when a odd number of rows
|
||||
if ( rowCount % 2 === 0 ) {
|
||||
class1 = 'odd';
|
||||
class2 = 'even';
|
||||
}
|
||||
|
||||
for (var i = 0; i < dt.page.len() - rowCount; i++) {
|
||||
body.append(
|
||||
$('<tr><td colspan="'+colspan+'"> </td></tr>')
|
||||
.addClass( i%2 === 0 ? class1 : class2 )
|
||||
.addClass( 'dt-rowFill--filler' )
|
||||
);
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
$.fn.dataTable.RowFill = RowFill;
|
||||
$.fn.DataTable.RowFill = RowFill;
|
||||
|
||||
// Automatic initialisation listener
|
||||
$(document).on('preInit.dt', function(e, settings) {
|
||||
if (e.namespace !== 'dt') {
|
||||
return;
|
||||
}
|
||||
|
||||
var api = new $.fn.dataTable.Api(settings);
|
||||
|
||||
if (settings.oInit.rowFill || $.fn.dataTable.defaults.rowFill) {
|
||||
new RowFill(api);
|
||||
}
|
||||
});
|
||||
});
|
@ -0,0 +1,17 @@
|
||||
/*!
|
||||
Copyright 2018 SpryMedia Ltd.
|
||||
|
||||
License MIT - http://datatables.net/license/mit
|
||||
|
||||
This feature plug-in for DataTables will automatically insert temporary rows
|
||||
into a DataTable that draws a page that is less than the configured page
|
||||
length. This can be handy to ensure that your table always as (e.g.) 10 rows
|
||||
visible.
|
||||
|
||||
Filler rows have the class `dt-rowFill--filler` assigned to them allowing for
|
||||
additional styling (e.g. reducing opacity).
|
||||
RowFill for DataTables v1.0.0
|
||||
2018 SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
(function(c){"function"===typeof define&&define.amd?define(["jquery","datatables.net"],function(a){return c(a,window,document)}):"object"===typeof exports?module.exports=function(a,b){a||(a=window);b&&b.fn.dataTable||(b=require("datatables.net")(a,b).$);return c(b,a,a.document)}:c(jQuery,window,document)})(function(c,a,b,k){var d=function(e,a){a=e.table();this.s={dt:e,body:c(a.body())};this._attach()};d.prototype={_attach:function(){var a=this.s.dt,b=this.s.body;a.on("draw",function(){var e=a.columns(":visible").count(),
|
||||
d=a.rows({page:"current"}).count(),g="even",h="odd";0===d&&(d=1);0===d%2&&(g="odd",h="even");for(var f=0;f<a.page.len()-d;f++)b.append(c('<tr><td colspan="'+e+'"> </td></tr>').addClass(0===f%2?g:h).addClass("dt-rowFill--filler"))})}};c.fn.dataTable.RowFill=d;c.fn.DataTable.RowFill=d;c(b).on("preInit.dt",function(a,b){"dt"===a.namespace&&(a=new c.fn.dataTable.Api(b),(b.oInit.rowFill||c.fn.dataTable.defaults.rowFill)&&new d(a))})});
|
@ -0,0 +1,508 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||
|
||||
<title>DataTables row fill example</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css">
|
||||
|
||||
<script type="text/javascript" language="javascript" src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
|
||||
<script type="text/javascript" language="javascript" src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
|
||||
<script type="text/javascript" language="javascript" src="dataTables.rowFill.js"></script>
|
||||
<script type="text/javascript" charset="utf-8">
|
||||
$(document).ready( function () {
|
||||
var table = $('#example').DataTable( {
|
||||
rowFill: true
|
||||
} );
|
||||
} );
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<table id="example" class="display" cellspacing="0" width="100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Position</th>
|
||||
<th>Office</th>
|
||||
<th>Age</th>
|
||||
<th>Start date</th>
|
||||
<th>Salary</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Position</th>
|
||||
<th>Office</th>
|
||||
<th>Age</th>
|
||||
<th>Start date</th>
|
||||
<th>Salary</th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Tiger Nixon</td>
|
||||
<td>System Architect</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>61</td>
|
||||
<td>2011/04/25</td>
|
||||
<td>$320,800</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Garrett Winters</td>
|
||||
<td>Accountant</td>
|
||||
<td>Tokyo</td>
|
||||
<td>63</td>
|
||||
<td>2011/07/25</td>
|
||||
<td>$170,750</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Ashton Cox</td>
|
||||
<td>Junior Technical Author</td>
|
||||
<td>San Francisco</td>
|
||||
<td>66</td>
|
||||
<td>2009/01/12</td>
|
||||
<td>$86,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Cedric Kelly</td>
|
||||
<td>Senior Javascript Developer</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>22</td>
|
||||
<td>2012/03/29</td>
|
||||
<td>$433,060</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Airi Satou</td>
|
||||
<td>Accountant</td>
|
||||
<td>Tokyo</td>
|
||||
<td>33</td>
|
||||
<td>2008/11/28</td>
|
||||
<td>$162,700</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Brielle Williamson</td>
|
||||
<td>Integration Specialist</td>
|
||||
<td>New York</td>
|
||||
<td>61</td>
|
||||
<td>2012/12/02</td>
|
||||
<td>$372,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Herrod Chandler</td>
|
||||
<td>Sales Assistant</td>
|
||||
<td>San Francisco</td>
|
||||
<td>59</td>
|
||||
<td>2012/08/06</td>
|
||||
<td>$137,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Rhona Davidson</td>
|
||||
<td>Integration Specialist</td>
|
||||
<td>Tokyo</td>
|
||||
<td>55</td>
|
||||
<td>2010/10/14</td>
|
||||
<td>$327,900</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Colleen Hurst</td>
|
||||
<td>Javascript Developer</td>
|
||||
<td>San Francisco</td>
|
||||
<td>39</td>
|
||||
<td>2009/09/15</td>
|
||||
<td>$205,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Sonya Frost</td>
|
||||
<td>Software Engineer</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>23</td>
|
||||
<td>2008/12/13</td>
|
||||
<td>$103,600</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Jena Gaines</td>
|
||||
<td>Office Manager</td>
|
||||
<td>London</td>
|
||||
<td>30</td>
|
||||
<td>2008/12/19</td>
|
||||
<td>$90,560</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Quinn Flynn</td>
|
||||
<td>Support Lead</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>22</td>
|
||||
<td>2013/03/03</td>
|
||||
<td>$342,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Charde Marshall</td>
|
||||
<td>Regional Director</td>
|
||||
<td>San Francisco</td>
|
||||
<td>36</td>
|
||||
<td>2008/10/16</td>
|
||||
<td>$470,600</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Haley Kennedy</td>
|
||||
<td>Senior Marketing Designer</td>
|
||||
<td>London</td>
|
||||
<td>43</td>
|
||||
<td>2012/12/18</td>
|
||||
<td>$313,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Tatyana Fitzpatrick</td>
|
||||
<td>Regional Director</td>
|
||||
<td>London</td>
|
||||
<td>19</td>
|
||||
<td>2010/03/17</td>
|
||||
<td>$385,750</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Michael Silva</td>
|
||||
<td>Marketing Designer</td>
|
||||
<td>London</td>
|
||||
<td>66</td>
|
||||
<td>2012/11/27</td>
|
||||
<td>$198,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Paul Byrd</td>
|
||||
<td>Chief Financial Officer (CFO)</td>
|
||||
<td>New York</td>
|
||||
<td>64</td>
|
||||
<td>2010/06/09</td>
|
||||
<td>$725,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Gloria Little</td>
|
||||
<td>Systems Administrator</td>
|
||||
<td>New York</td>
|
||||
<td>59</td>
|
||||
<td>2009/04/10</td>
|
||||
<td>$237,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bradley Greer</td>
|
||||
<td>Software Engineer</td>
|
||||
<td>London</td>
|
||||
<td>41</td>
|
||||
<td>2012/10/13</td>
|
||||
<td>$132,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Dai Rios</td>
|
||||
<td>Personnel Lead</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>35</td>
|
||||
<td>2012/09/26</td>
|
||||
<td>$217,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Jenette Caldwell</td>
|
||||
<td>Development Lead</td>
|
||||
<td>New York</td>
|
||||
<td>30</td>
|
||||
<td>2011/09/03</td>
|
||||
<td>$345,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Yuri Berry</td>
|
||||
<td>Chief Marketing Officer (CMO)</td>
|
||||
<td>New York</td>
|
||||
<td>40</td>
|
||||
<td>2009/06/25</td>
|
||||
<td>$675,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Caesar Vance</td>
|
||||
<td>Pre-Sales Support</td>
|
||||
<td>New York</td>
|
||||
<td>21</td>
|
||||
<td>2011/12/12</td>
|
||||
<td>$106,450</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Doris Wilder</td>
|
||||
<td>Sales Assistant</td>
|
||||
<td>Sidney</td>
|
||||
<td>23</td>
|
||||
<td>2010/09/20</td>
|
||||
<td>$85,600</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Angelica Ramos</td>
|
||||
<td>Chief Executive Officer (CEO)</td>
|
||||
<td>London</td>
|
||||
<td>47</td>
|
||||
<td>2009/10/09</td>
|
||||
<td>$1,200,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Gavin Joyce</td>
|
||||
<td>Developer</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>42</td>
|
||||
<td>2010/12/22</td>
|
||||
<td>$92,575</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Jennifer Chang</td>
|
||||
<td>Regional Director</td>
|
||||
<td>Singapore</td>
|
||||
<td>28</td>
|
||||
<td>2010/11/14</td>
|
||||
<td>$357,650</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Brenden Wagner</td>
|
||||
<td>Software Engineer</td>
|
||||
<td>San Francisco</td>
|
||||
<td>28</td>
|
||||
<td>2011/06/07</td>
|
||||
<td>$206,850</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Fiona Green</td>
|
||||
<td>Chief Operating Officer (COO)</td>
|
||||
<td>San Francisco</td>
|
||||
<td>48</td>
|
||||
<td>2010/03/11</td>
|
||||
<td>$850,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Shou Itou</td>
|
||||
<td>Regional Marketing</td>
|
||||
<td>Tokyo</td>
|
||||
<td>20</td>
|
||||
<td>2011/08/14</td>
|
||||
<td>$163,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Michelle House</td>
|
||||
<td>Integration Specialist</td>
|
||||
<td>Sidney</td>
|
||||
<td>37</td>
|
||||
<td>2011/06/02</td>
|
||||
<td>$95,400</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Suki Burks</td>
|
||||
<td>Developer</td>
|
||||
<td>London</td>
|
||||
<td>53</td>
|
||||
<td>2009/10/22</td>
|
||||
<td>$114,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Prescott Bartlett</td>
|
||||
<td>Technical Author</td>
|
||||
<td>London</td>
|
||||
<td>27</td>
|
||||
<td>2011/05/07</td>
|
||||
<td>$145,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Gavin Cortez</td>
|
||||
<td>Team Leader</td>
|
||||
<td>San Francisco</td>
|
||||
<td>22</td>
|
||||
<td>2008/10/26</td>
|
||||
<td>$235,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Martena Mccray</td>
|
||||
<td>Post-Sales support</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>46</td>
|
||||
<td>2011/03/09</td>
|
||||
<td>$324,050</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Unity Butler</td>
|
||||
<td>Marketing Designer</td>
|
||||
<td>San Francisco</td>
|
||||
<td>47</td>
|
||||
<td>2009/12/09</td>
|
||||
<td>$85,675</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Howard Hatfield</td>
|
||||
<td>Office Manager</td>
|
||||
<td>San Francisco</td>
|
||||
<td>51</td>
|
||||
<td>2008/12/16</td>
|
||||
<td>$164,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Hope Fuentes</td>
|
||||
<td>Secretary</td>
|
||||
<td>San Francisco</td>
|
||||
<td>41</td>
|
||||
<td>2010/02/12</td>
|
||||
<td>$109,850</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Vivian Harrell</td>
|
||||
<td>Financial Controller</td>
|
||||
<td>San Francisco</td>
|
||||
<td>62</td>
|
||||
<td>2009/02/14</td>
|
||||
<td>$452,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Timothy Mooney</td>
|
||||
<td>Office Manager</td>
|
||||
<td>London</td>
|
||||
<td>37</td>
|
||||
<td>2008/12/11</td>
|
||||
<td>$136,200</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Jackson Bradshaw</td>
|
||||
<td>Director</td>
|
||||
<td>New York</td>
|
||||
<td>65</td>
|
||||
<td>2008/09/26</td>
|
||||
<td>$645,750</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Olivia Liang</td>
|
||||
<td>Support Engineer</td>
|
||||
<td>Singapore</td>
|
||||
<td>64</td>
|
||||
<td>2011/02/03</td>
|
||||
<td>$234,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bruno Nash</td>
|
||||
<td>Software Engineer</td>
|
||||
<td>London</td>
|
||||
<td>38</td>
|
||||
<td>2011/05/03</td>
|
||||
<td>$163,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Sakura Yamamoto</td>
|
||||
<td>Support Engineer</td>
|
||||
<td>Tokyo</td>
|
||||
<td>37</td>
|
||||
<td>2009/08/19</td>
|
||||
<td>$139,575</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Thor Walton</td>
|
||||
<td>Developer</td>
|
||||
<td>New York</td>
|
||||
<td>61</td>
|
||||
<td>2013/08/11</td>
|
||||
<td>$98,540</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Finn Camacho</td>
|
||||
<td>Support Engineer</td>
|
||||
<td>San Francisco</td>
|
||||
<td>47</td>
|
||||
<td>2009/07/07</td>
|
||||
<td>$87,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Serge Baldwin</td>
|
||||
<td>Data Coordinator</td>
|
||||
<td>Singapore</td>
|
||||
<td>64</td>
|
||||
<td>2012/04/09</td>
|
||||
<td>$138,575</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Zenaida Frank</td>
|
||||
<td>Software Engineer</td>
|
||||
<td>New York</td>
|
||||
<td>63</td>
|
||||
<td>2010/01/04</td>
|
||||
<td>$125,250</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Zorita Serrano</td>
|
||||
<td>Software Engineer</td>
|
||||
<td>San Francisco</td>
|
||||
<td>56</td>
|
||||
<td>2012/06/01</td>
|
||||
<td>$115,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Jennifer Acosta</td>
|
||||
<td>Junior Javascript Developer</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>43</td>
|
||||
<td>2013/02/01</td>
|
||||
<td>$75,650</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Cara Stevens</td>
|
||||
<td>Sales Assistant</td>
|
||||
<td>New York</td>
|
||||
<td>46</td>
|
||||
<td>2011/12/06</td>
|
||||
<td>$145,600</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Hermione Butler</td>
|
||||
<td>Regional Director</td>
|
||||
<td>London</td>
|
||||
<td>47</td>
|
||||
<td>2011/03/21</td>
|
||||
<td>$356,250</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Lael Greer</td>
|
||||
<td>Systems Administrator</td>
|
||||
<td>London</td>
|
||||
<td>21</td>
|
||||
<td>2009/02/27</td>
|
||||
<td>$103,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Jonas Alexander</td>
|
||||
<td>Developer</td>
|
||||
<td>San Francisco</td>
|
||||
<td>30</td>
|
||||
<td>2010/07/14</td>
|
||||
<td>$86,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Shad Decker</td>
|
||||
<td>Regional Director</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>51</td>
|
||||
<td>2008/11/13</td>
|
||||
<td>$183,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Michael Bruce</td>
|
||||
<td>Javascript Developer</td>
|
||||
<td>Singapore</td>
|
||||
<td>29</td>
|
||||
<td>2011/06/27</td>
|
||||
<td>$183,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Donna Snider</td>
|
||||
<td>Customer Support</td>
|
||||
<td>New York</td>
|
||||
<td>27</td>
|
||||
<td>2011/01/25</td>
|
||||
<td>$112,000</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -1,26 +1,8 @@
|
||||
/*!
|
||||
Copyright 2015 SpryMedia Ltd.
|
||||
|
||||
License MIT - http://datatables.net/license/mit
|
||||
|
||||
This feature plug-in for DataTables will automatically change the DataTables
|
||||
page length in order to fit inside its container. This can be particularly
|
||||
useful for control panels and other interfaces which resize dynamically with
|
||||
the user's browser window instead of scrolling.
|
||||
|
||||
Page resizing in DataTables can be enabled by using any one of the following
|
||||
options:
|
||||
|
||||
* Setting the `scrollResize` parameter in the DataTables initialisation to
|
||||
be true - i.e. `scrollResize: true`
|
||||
* Setting the `scrollResize` parameter to be true in the DataTables
|
||||
defaults (thus causing all tables to have this feature) - i.e.
|
||||
`$.fn.dataTable.defaults.scrollResize = true`.
|
||||
* Creating a new instance: `new $.fn.dataTable.ScrollResize( table );` where
|
||||
`table` is a DataTable's API instance.
|
||||
ScrollResize for DataTables v1.0.0
|
||||
2015 SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
(function(a){var e=function(d){var c=this,b=d.table();this.s={dt:d,host:a(b.container()).parent(),header:a(b.header()),footer:a(b.footer()),body:a(b.body()),container:a(b.container()),table:a(b.node())};b=this.s.host;"static"===b.css("position")&&b.css("position","relative");d.on("draw",function(){c._size()});this._attach();this._size()};e.prototype={_size:function(){var d=this.s,c=d.dt,b=c.table(),h=a(d.table).offset().top,g=d.host.height(),f=a("div.dataTables_scrollBody",b.container()),g=g-h-(d.container.height()-
|
||||
(h+f.height()));a("div.dataTables_scrollBody",b.container()).css({maxHeight:g,height:g});c.fixedColumns&&c.fixedColumns().relayout()},_attach:function(){var d=this,c=a("<iframe/>").css({position:"absolute",top:0,left:0,height:"100%",width:"100%",zIndex:-1,border:0}).attr("frameBorder","0").attr("src","about:blank");c[0].onload=function(){var b=this.contentDocument.body,a=b.offsetHeight,c=this.contentDocument;(c.defaultView||c.parentWindow).onresize=function(){var f=b.clientHeight||b.offsetHeight,
|
||||
e=c.documentElement.clientHeight;!f&&e&&(f=e);f!==a&&(a=f,d._size())}};c.appendTo(this.s.host).attr("data","about:blank")}};a.fn.dataTable.ScrollResize=e;a.fn.DataTable.ScrollResize=e;a(document).on("init.dt",function(d,c){"dt"===d.namespace&&(d=new a.fn.dataTable.Api(c),(c.oInit.scrollResize||a.fn.dataTable.defaults.scrollResize)&&new e(d))})})(jQuery);
|
||||
(function(a){"function"===typeof define&&define.amd?define(["jquery","datatables.net"],function(b){return a(b,window,document)}):"object"===typeof exports?module.exports=function(b,c){b||(b=window);if(!c||!c.fn.dataTable)c=require("datatables.net")(b,c).$;return a(c,b,b.document)}:a(jQuery,window,document)})(function(a,b,c){var g=function(e){var f=this,d=e.table();this.s={dt:e,host:a(d.container()).parent(),header:a(d.header()),footer:a(d.footer()),body:a(d.body()),container:a(d.container()),table:a(d.node())};
|
||||
d=this.s.host;"static"===d.css("position")&&d.css("position","relative");e.on("draw",function(){f._size()});this._attach();this._size()};g.prototype={_size:function(){var e=this.s,f=e.dt,d=f.table(),b=a(e.table).offset().top,h=e.host.height(),c=a("div.dataTables_scrollBody",d.container()),h=h-b-(e.container.height()-(b+c.height()));a("div.dataTables_scrollBody",d.container()).css({maxHeight:h,height:h});f.fixedColumns&&f.fixedColumns().relayout()},_attach:function(){var e=this,b=a("<iframe/>").css({position:"absolute",
|
||||
top:0,left:0,height:"100%",width:"100%",zIndex:-1,border:0}).attr("frameBorder","0").attr("src","about:blank");b[0].onload=function(){var a=this.contentDocument.body,b=a.offsetHeight,c=this.contentDocument;(c.defaultView||c.parentWindow).onresize=function(){var f=a.clientHeight||a.offsetHeight,g=c.documentElement.clientHeight;!f&&g&&(f=g);f!==b&&(b=f,e._size())}};b.appendTo(this.s.host).attr("data","about:blank")}};a.fn.dataTable.ScrollResize=g;a.fn.DataTable.ScrollResize=g;a(c).on("init.dt",function(b,
|
||||
c){if("dt"===b.namespace){var d=new a.fn.dataTable.Api(c);(c.oInit.scrollResize||a.fn.dataTable.defaults.scrollResize)&&new g(d)}})});
|
||||
|
@ -0,0 +1,3 @@
|
||||
.notMatched td {
|
||||
opacity: 0.2;
|
||||
}
|
@ -0,0 +1,113 @@
|
||||
/*! SearchFade 0.0.1
|
||||
* 2018 SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
|
||||
/**
|
||||
* @summary SearchFade
|
||||
* @description Search and Fade unmatching rows in a DataTables
|
||||
* @version 0.0.1
|
||||
* @author SpryMedia Ltd (www.sprymedia.co.uk)
|
||||
* @copyright Copyright 2018 SpryMedia Ltd.
|
||||
*
|
||||
* This source file is free software, available under the following license:
|
||||
* MIT license - http://datatables.net/license/mit
|
||||
*
|
||||
* This source file is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
||||
* or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details.
|
||||
*
|
||||
* For details please refer to: http://www.datatables.net
|
||||
*/
|
||||
(function(factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
// AMD
|
||||
define(['jquery', 'datatables.net'], function($) {
|
||||
return factory($, window, document);
|
||||
});
|
||||
} else if (typeof exports === 'object') {
|
||||
// CommonJS
|
||||
module.exports = function(root, $) {
|
||||
if (!root) {
|
||||
root = window;
|
||||
}
|
||||
|
||||
if (!$ || !$.fn.dataTable) {
|
||||
$ = require('datatables.net')(root, $).$;
|
||||
}
|
||||
|
||||
return factory($, root, root.document);
|
||||
};
|
||||
} else {
|
||||
// Browser
|
||||
factory(jQuery, window, document);
|
||||
}
|
||||
})(function($, window, document, undefined) {
|
||||
'use strict';
|
||||
|
||||
$.fn.dataTable.Api.register('searchFade()', function() {
|
||||
return this;
|
||||
});
|
||||
|
||||
$.fn.dataTable.Api.register('searchFade().node()', function() {
|
||||
return this.settings()[0].searchFadeNode;
|
||||
});
|
||||
|
||||
function _draw(table, searchFade) {
|
||||
searchFade.empty();
|
||||
searchFade.append('Search: ');
|
||||
|
||||
$('<input type="text" class="searchFadeInput' + table.settings()[0].sTableId + '">').appendTo(searchFade);
|
||||
}
|
||||
|
||||
$.fn.dataTable.SearchFade = function(settings) {
|
||||
var table = new $.fn.dataTable.Api(settings);
|
||||
var searchFade = $('<div class="searchFade"/>');
|
||||
|
||||
table.settings()[0].searchFadeNode = searchFade;
|
||||
|
||||
_draw(table, searchFade);
|
||||
|
||||
// Trigger a search
|
||||
searchFade.on('keyup redraw', 'input', function() {
|
||||
table.rows(':visible').every(function(rowIdx, tableLoop, rowLoop) {
|
||||
var present = true;
|
||||
if ($('.searchFadeInput' + table.settings()[0].sTableId).val().length) {
|
||||
present = table
|
||||
.row(rowIdx)
|
||||
.data()
|
||||
.some(function(v) {
|
||||
return v.match(new RegExp($('.searchFadeInput' + table.settings()[0].sTableId).val(), 'i')) != null;
|
||||
});
|
||||
}
|
||||
$(table.row(rowIdx).node()).toggleClass('notMatched', !present);
|
||||
});
|
||||
});
|
||||
|
||||
table.on('draw', function() {
|
||||
$('input', searchFade).trigger('redraw');
|
||||
});
|
||||
|
||||
// API method to get the searchFade container node
|
||||
this.node = function() {
|
||||
return searchFade;
|
||||
};
|
||||
};
|
||||
|
||||
$.fn.DataTable.SearchFade = $.fn.dataTable.SearchFade;
|
||||
|
||||
$.fn.dataTable.ext.feature.push({
|
||||
fnInit: function(settings) {
|
||||
var search = new $.fn.dataTable.SearchFade(settings);
|
||||
return search.node();
|
||||
},
|
||||
cFeature: 'F'
|
||||
});
|
||||
|
||||
$(document).on('init.dt', function(e, settings, json) {
|
||||
if (e.namespace === 'dt') {
|
||||
$.fn.dataTable.SearchFade(settings);
|
||||
}
|
||||
|
||||
return;
|
||||
});
|
||||
});
|
@ -0,0 +1 @@
|
||||
.notMatched td{opacity:0.2}
|
@ -0,0 +1,7 @@
|
||||
/*!
|
||||
SearchFade 0.0.1
|
||||
2018 SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
(function(b){"function"===typeof define&&define.amd?define(["jquery","datatables.net"],function(c){return b(c,window,document)}):"object"===typeof exports?module.exports=function(c,a){c||(c=window);if(!a||!a.fn.dataTable)a=require("datatables.net")(c,a).$;return b(a,c,c.document)}:b(jQuery,window,document)})(function(b,c,a){b.fn.dataTable.Api.register("searchFade()",function(){return this});b.fn.dataTable.Api.register("searchFade().node()",function(){return this.settings()[0].searchFadeNode});b.fn.dataTable.SearchFade=
|
||||
function(c){var d=new b.fn.dataTable.Api(c),a=b('<div class="searchFade"/>');d.settings()[0].searchFadeNode=a;a.empty();a.append("Search: ");b('<input type="text" class="searchFadeInput'+d.settings()[0].sTableId+'">').appendTo(a);a.on("keyup redraw","input",function(){d.rows(":visible").every(function(a){var c=!0;b(".searchFadeInput"+d.settings()[0].sTableId).val().length&&(c=d.row(a).data().some(function(a){return null!=a.match(RegExp(b(".searchFadeInput"+d.settings()[0].sTableId).val(),"i"))}));
|
||||
b(d.row(a).node()).toggleClass("notMatched",!c)})});d.on("draw",function(){b("input",a).trigger("redraw")});this.node=function(){return a}};b.fn.DataTable.SearchFade=b.fn.dataTable.SearchFade;b.fn.dataTable.ext.feature.push({fnInit:function(a){return(new b.fn.dataTable.SearchFade(a)).node()},cFeature:"F"});b(a).on("init.dt",function(a,c){"dt"===a.namespace&&b.fn.dataTable.SearchFade(c)})});
|
@ -1,28 +1,6 @@
|
||||
/*!
|
||||
Copyright 2014 SpryMedia Ltd.
|
||||
|
||||
License MIT - http://datatables.net/license/mit
|
||||
|
||||
This feature plug-in for DataTables will highlight search terms in the
|
||||
DataTable as they are entered into the main search input element, or via the
|
||||
`search()` API method.
|
||||
|
||||
It depends upon the jQuery Highlight plug-in by Bartek Szopka:
|
||||
http://bartaz.github.io/sandbox.js/jquery.highlight.js
|
||||
|
||||
Search highlighting in DataTables can be enabled by:
|
||||
|
||||
* Adding the class `searchHighlight` to the HTML table
|
||||
* Setting the `searchHighlight` parameter in the DataTables initialisation to
|
||||
be true
|
||||
* Setting the `searchHighlight` parameter to be true in the DataTables
|
||||
defaults (thus causing all tables to have this feature) - i.e.
|
||||
`$.fn.dataTable.defaults.searchHighlight = true`.
|
||||
|
||||
For more detailed information please see:
|
||||
http://datatables.net/blog/2014-10-22
|
||||
SearchHighlight for DataTables v1.0.1
|
||||
2014 SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
(function(h,e,a){function f(d,c){d.unhighlight();c.rows({filter:"applied"}).data().length&&(c.columns().every(function(){this.nodes().flatten().to$().unhighlight({className:"column_highlight"});this.nodes().flatten().to$().highlight(a.trim(this.search()).split(/\s+/),{className:"column_highlight"})}),d.highlight(a.trim(c.search()).split(/\s+/)))}a(e).on("init.dt.dth",function(d,c,e){if("dt"===d.namespace){var b=new a.fn.dataTable.Api(c),g=a(b.table().body());if(a(b.table().node()).hasClass("searchHighlight")||
|
||||
c.oInit.searchHighlight||a.fn.dataTable.defaults.searchHighlight)b.on("draw.dt.dth column-visibility.dt.dth column-reorder.dt.dth",function(){f(g,b)}).on("destroy",function(){b.off("draw.dt.dth column-visibility.dt.dth column-reorder.dt.dth")}),b.search()&&f(g,b)}})})(window,document,jQuery);
|
||||
(function(h,g,a){function e(d,c){d.unhighlight();c.rows({filter:"applied"}).data().length&&(c.columns().every(function(){this.nodes().flatten().to$().unhighlight({className:"column_highlight"});this.nodes().flatten().to$().highlight(a.trim(this.search()).split(/\s+/),{className:"column_highlight"})}),d.highlight(a.trim(c.search()).split(/\s+/)))}a(g).on("init.dt.dth",function(d,c){if("dt"===d.namespace){var b=new a.fn.dataTable.Api(c),f=a(b.table().body());if(a(b.table().node()).hasClass("searchHighlight")||
|
||||
c.oInit.searchHighlight||a.fn.dataTable.defaults.searchHighlight)b.on("draw.dt.dth column-visibility.dt.dth column-reorder.dt.dth",function(){e(f,b)}).on("destroy",function(){b.off("draw.dt.dth column-visibility.dt.dth column-reorder.dt.dth")}),b.search()&&e(f,b)}})})(window,document,jQuery);
|
||||
|
@ -0,0 +1,537 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
||||
|
||||
<title>DataTables search pane example</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.12/css/jquery.dataTables.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="dataTables.searchPane.css">
|
||||
<style type="text/css">
|
||||
body {
|
||||
font: 90%/1.45em "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: #333;
|
||||
background-color: #fff;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script type="text/javascript" language="javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
|
||||
<script type="text/javascript" language="javascript" src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>
|
||||
<script type="text/javascript" language="javascript" src="dataTables.searchPane.js"></script>
|
||||
<script type="text/javascript" charset="utf-8">
|
||||
$(document).ready( function () {
|
||||
var table = $('#example').DataTable( {
|
||||
searchPane: true,
|
||||
columnDefs: [ {
|
||||
targets: 1,
|
||||
searchPane: {
|
||||
match: 'any'
|
||||
}
|
||||
} ]
|
||||
} );
|
||||
|
||||
// Get the data from column index 1, and split it by words
|
||||
var options = table
|
||||
.column(1)
|
||||
.data()
|
||||
.map( function ( d ) {
|
||||
return d.split(' ');
|
||||
})
|
||||
.flatten()
|
||||
.sort();
|
||||
|
||||
// Apply that as the options for the column
|
||||
table.column(1).paneOptions( options )
|
||||
} );
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<table id="example" class="display nowrap" cellspacing="0" width="100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Position</th>
|
||||
<th>Office</th>
|
||||
<th>Age</th>
|
||||
<th>Start date</th>
|
||||
<th>Salary</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tfoot>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Position</th>
|
||||
<th>Office</th>
|
||||
<th>Age</th>
|
||||
<th>Start date</th>
|
||||
<th>Salary</th>
|
||||
</tr>
|
||||
</tfoot>
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Tiger Nixon</td>
|
||||
<td>System Architect</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>61</td>
|
||||
<td>2011/04/25</td>
|
||||
<td>$320,800</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Garrett Winters</td>
|
||||
<td>Accountant</td>
|
||||
<td>Tokyo</td>
|
||||
<td>63</td>
|
||||
<td>2011/07/25</td>
|
||||
<td>$170,750</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Ashton Cox</td>
|
||||
<td>Junior Technical Author</td>
|
||||
<td>San Francisco</td>
|
||||
<td>66</td>
|
||||
<td>2009/01/12</td>
|
||||
<td>$86,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Cedric Kelly</td>
|
||||
<td>Senior Javascript Developer</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>22</td>
|
||||
<td>2012/03/29</td>
|
||||
<td>$433,060</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Airi Satou</td>
|
||||
<td>Accountant</td>
|
||||
<td>Tokyo</td>
|
||||
<td>33</td>
|
||||
<td>2008/11/28</td>
|
||||
<td>$162,700</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Brielle Williamson</td>
|
||||
<td>Integration Specialist</td>
|
||||
<td>New York</td>
|
||||
<td>61</td>
|
||||
<td>2012/12/02</td>
|
||||
<td>$372,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Herrod Chandler</td>
|
||||
<td>Sales Assistant</td>
|
||||
<td>San Francisco</td>
|
||||
<td>59</td>
|
||||
<td>2012/08/06</td>
|
||||
<td>$137,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Rhona Davidson</td>
|
||||
<td>Integration Specialist</td>
|
||||
<td>Tokyo</td>
|
||||
<td>55</td>
|
||||
<td>2010/10/14</td>
|
||||
<td>$327,900</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Colleen Hurst</td>
|
||||
<td>Javascript Developer</td>
|
||||
<td>San Francisco</td>
|
||||
<td>39</td>
|
||||
<td>2009/09/15</td>
|
||||
<td>$205,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Sonya Frost</td>
|
||||
<td>Software Engineer</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>23</td>
|
||||
<td>2008/12/13</td>
|
||||
<td>$103,600</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Jena Gaines</td>
|
||||
<td>Office Manager</td>
|
||||
<td>London</td>
|
||||
<td>30</td>
|
||||
<td>2008/12/19</td>
|
||||
<td>$90,560</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Quinn Flynn</td>
|
||||
<td>Support Lead</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>22</td>
|
||||
<td>2013/03/03</td>
|
||||
<td>$342,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Charde Marshall</td>
|
||||
<td>Regional Director</td>
|
||||
<td>San Francisco</td>
|
||||
<td>36</td>
|
||||
<td>2008/10/16</td>
|
||||
<td>$470,600</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Haley Kennedy</td>
|
||||
<td>Senior Marketing Designer</td>
|
||||
<td>London</td>
|
||||
<td>43</td>
|
||||
<td>2012/12/18</td>
|
||||
<td>$313,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Tatyana Fitzpatrick</td>
|
||||
<td>Regional Director</td>
|
||||
<td>London</td>
|
||||
<td>19</td>
|
||||
<td>2010/03/17</td>
|
||||
<td>$385,750</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Michael Silva</td>
|
||||
<td>Marketing Designer</td>
|
||||
<td>London</td>
|
||||
<td>66</td>
|
||||
<td>2012/11/27</td>
|
||||
<td>$198,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Paul Byrd</td>
|
||||
<td>Chief Financial Officer (CFO)</td>
|
||||
<td>New York</td>
|
||||
<td>64</td>
|
||||
<td>2010/06/09</td>
|
||||
<td>$725,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Gloria Little</td>
|
||||
<td>Systems Administrator</td>
|
||||
<td>New York</td>
|
||||
<td>59</td>
|
||||
<td>2009/04/10</td>
|
||||
<td>$237,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bradley Greer</td>
|
||||
<td>Software Engineer</td>
|
||||
<td>London</td>
|
||||
<td>41</td>
|
||||
<td>2012/10/13</td>
|
||||
<td>$132,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Dai Rios</td>
|
||||
<td>Personnel Lead</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>35</td>
|
||||
<td>2012/09/26</td>
|
||||
<td>$217,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Jenette Caldwell</td>
|
||||
<td>Development Lead</td>
|
||||
<td>New York</td>
|
||||
<td>30</td>
|
||||
<td>2011/09/03</td>
|
||||
<td>$345,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Yuri Berry</td>
|
||||
<td>Chief Marketing Officer (CMO)</td>
|
||||
<td>New York</td>
|
||||
<td>40</td>
|
||||
<td>2009/06/25</td>
|
||||
<td>$675,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Caesar Vance</td>
|
||||
<td>Pre-Sales Support</td>
|
||||
<td>New York</td>
|
||||
<td>21</td>
|
||||
<td>2011/12/12</td>
|
||||
<td>$106,450</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Doris Wilder</td>
|
||||
<td>Sales Assistant</td>
|
||||
<td>Sidney</td>
|
||||
<td>23</td>
|
||||
<td>2010/09/20</td>
|
||||
<td>$85,600</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Angelica Ramos</td>
|
||||
<td>Chief Executive Officer (CEO)</td>
|
||||
<td>London</td>
|
||||
<td>47</td>
|
||||
<td>2009/10/09</td>
|
||||
<td>$1,200,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Gavin Joyce</td>
|
||||
<td>Developer</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>42</td>
|
||||
<td>2010/12/22</td>
|
||||
<td>$92,575</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Jennifer Chang</td>
|
||||
<td>Regional Director</td>
|
||||
<td>Singapore</td>
|
||||
<td>28</td>
|
||||
<td>2010/11/14</td>
|
||||
<td>$357,650</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Brenden Wagner</td>
|
||||
<td>Software Engineer</td>
|
||||
<td>San Francisco</td>
|
||||
<td>28</td>
|
||||
<td>2011/06/07</td>
|
||||
<td>$206,850</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Fiona Green</td>
|
||||
<td>Chief Operating Officer (COO)</td>
|
||||
<td>San Francisco</td>
|
||||
<td>48</td>
|
||||
<td>2010/03/11</td>
|
||||
<td>$850,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Shou Itou</td>
|
||||
<td>Regional Marketing</td>
|
||||
<td>Tokyo</td>
|
||||
<td>20</td>
|
||||
<td>2011/08/14</td>
|
||||
<td>$163,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Michelle House</td>
|
||||
<td>Integration Specialist</td>
|
||||
<td>Sidney</td>
|
||||
<td>37</td>
|
||||
<td>2011/06/02</td>
|
||||
<td>$95,400</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Suki Burks</td>
|
||||
<td>Developer</td>
|
||||
<td>London</td>
|
||||
<td>53</td>
|
||||
<td>2009/10/22</td>
|
||||
<td>$114,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Prescott Bartlett</td>
|
||||
<td>Technical Author</td>
|
||||
<td>London</td>
|
||||
<td>27</td>
|
||||
<td>2011/05/07</td>
|
||||
<td>$145,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Gavin Cortez</td>
|
||||
<td>Team Leader</td>
|
||||
<td>San Francisco</td>
|
||||
<td>22</td>
|
||||
<td>2008/10/26</td>
|
||||
<td>$235,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Martena Mccray</td>
|
||||
<td>Post-Sales support</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>46</td>
|
||||
<td>2011/03/09</td>
|
||||
<td>$324,050</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Unity Butler</td>
|
||||
<td>Marketing Designer</td>
|
||||
<td>San Francisco</td>
|
||||
<td>47</td>
|
||||
<td>2009/12/09</td>
|
||||
<td>$85,675</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Howard Hatfield</td>
|
||||
<td>Office Manager</td>
|
||||
<td>San Francisco</td>
|
||||
<td>51</td>
|
||||
<td>2008/12/16</td>
|
||||
<td>$164,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Hope Fuentes</td>
|
||||
<td>Secretary</td>
|
||||
<td>San Francisco</td>
|
||||
<td>41</td>
|
||||
<td>2010/02/12</td>
|
||||
<td>$109,850</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Vivian Harrell</td>
|
||||
<td>Financial Controller</td>
|
||||
<td>San Francisco</td>
|
||||
<td>62</td>
|
||||
<td>2009/02/14</td>
|
||||
<td>$452,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Timothy Mooney</td>
|
||||
<td>Office Manager</td>
|
||||
<td>London</td>
|
||||
<td>37</td>
|
||||
<td>2008/12/11</td>
|
||||
<td>$136,200</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Jackson Bradshaw</td>
|
||||
<td>Director</td>
|
||||
<td>New York</td>
|
||||
<td>65</td>
|
||||
<td>2008/09/26</td>
|
||||
<td>$645,750</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Olivia Liang</td>
|
||||
<td>Support Engineer</td>
|
||||
<td>Singapore</td>
|
||||
<td>64</td>
|
||||
<td>2011/02/03</td>
|
||||
<td>$234,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bruno Nash</td>
|
||||
<td>Software Engineer</td>
|
||||
<td>London</td>
|
||||
<td>38</td>
|
||||
<td>2011/05/03</td>
|
||||
<td>$163,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Sakura Yamamoto</td>
|
||||
<td>Support Engineer</td>
|
||||
<td>Tokyo</td>
|
||||
<td>37</td>
|
||||
<td>2009/08/19</td>
|
||||
<td>$139,575</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Thor Walton</td>
|
||||
<td>Developer</td>
|
||||
<td>New York</td>
|
||||
<td>61</td>
|
||||
<td>2013/08/11</td>
|
||||
<td>$98,540</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Finn Camacho</td>
|
||||
<td>Support Engineer</td>
|
||||
<td>San Francisco</td>
|
||||
<td>47</td>
|
||||
<td>2009/07/07</td>
|
||||
<td>$87,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Serge Baldwin</td>
|
||||
<td>Data Coordinator</td>
|
||||
<td>Singapore</td>
|
||||
<td>64</td>
|
||||
<td>2012/04/09</td>
|
||||
<td>$138,575</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Zenaida Frank</td>
|
||||
<td>Software Engineer</td>
|
||||
<td>New York</td>
|
||||
<td>63</td>
|
||||
<td>2010/01/04</td>
|
||||
<td>$125,250</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Zorita Serrano</td>
|
||||
<td>Software Engineer</td>
|
||||
<td>San Francisco</td>
|
||||
<td>56</td>
|
||||
<td>2012/06/01</td>
|
||||
<td>$115,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Jennifer Acosta</td>
|
||||
<td>Junior Javascript Developer</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>43</td>
|
||||
<td>2013/02/01</td>
|
||||
<td>$75,650</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Cara Stevens</td>
|
||||
<td>Sales Assistant</td>
|
||||
<td>New York</td>
|
||||
<td>46</td>
|
||||
<td>2011/12/06</td>
|
||||
<td>$145,600</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Hermione Butler</td>
|
||||
<td>Regional Director</td>
|
||||
<td>London</td>
|
||||
<td>47</td>
|
||||
<td>2011/03/21</td>
|
||||
<td>$356,250</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Lael Greer</td>
|
||||
<td>Systems Administrator</td>
|
||||
<td>London</td>
|
||||
<td>21</td>
|
||||
<td>2009/02/27</td>
|
||||
<td>$103,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Jonas Alexander</td>
|
||||
<td>Developer</td>
|
||||
<td>San Francisco</td>
|
||||
<td>30</td>
|
||||
<td>2010/07/14</td>
|
||||
<td>$86,500</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Shad Decker</td>
|
||||
<td>Regional Director</td>
|
||||
<td>Edinburgh</td>
|
||||
<td>51</td>
|
||||
<td>2008/11/13</td>
|
||||
<td>$183,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Michael Bruce</td>
|
||||
<td>Javascript Developer</td>
|
||||
<td>Singapore</td>
|
||||
<td>29</td>
|
||||
<td>2011/06/27</td>
|
||||
<td>$183,000</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Donna Snider</td>
|
||||
<td>Customer Support</td>
|
||||
<td>New York</td>
|
||||
<td>27</td>
|
||||
<td>2011/01/25</td>
|
||||
<td>$112,000</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,267 @@
|
||||
/**
|
||||
* @summary SlidingChild
|
||||
* @description Show / Hide row child plugin
|
||||
* @version 2.0.2
|
||||
* @file dataTables.slidingChild.js
|
||||
* @author Nick Adkinson (https://github.com/data-handler)
|
||||
* @copyright Copyright 2018 Nick Adkinson
|
||||
*
|
||||
* License MIT - http://datatables.net/license/mit
|
||||
*
|
||||
* This feature plug-in provides functionality for showing and hiding row child
|
||||
* information in DataTables. This can be particularly useful for displaying
|
||||
* hierarchical data as a drill-down, or where you wish to convey more information
|
||||
* about a row than there is space for in the host table.
|
||||
*
|
||||
* @example
|
||||
* $('#myTable').DataTable({
|
||||
* slidingChild: {
|
||||
* source: function(parent, response) {
|
||||
* $.get('/Child/GetByParentId/' + parent.data('id'), response);
|
||||
* }
|
||||
* }
|
||||
* });
|
||||
*
|
||||
*/
|
||||
(function( factory ){
|
||||
if ( typeof define === 'function' && define.amd ) {
|
||||
// AMD
|
||||
define( ['jquery', 'datatables.net'], function ( $ ) {
|
||||
return factory( $, window, document );
|
||||
} );
|
||||
}
|
||||
else if ( typeof exports === 'object' ) {
|
||||
// CommonJS
|
||||
module.exports = function (root, $) {
|
||||
if ( ! root ) {
|
||||
root = window;
|
||||
}
|
||||
|
||||
if ( ! $ || ! $.fn.dataTable ) {
|
||||
$ = require('datatables.net')(root, $).$;
|
||||
}
|
||||
|
||||
return factory( $, root, root.document );
|
||||
};
|
||||
}
|
||||
else {
|
||||
// Browser
|
||||
factory( jQuery, document );
|
||||
}
|
||||
}(function( $, document ) {
|
||||
'use strict';
|
||||
|
||||
var SlidingChild = function (dt, options)
|
||||
{
|
||||
var that = this;
|
||||
dt.on('draw', function() {
|
||||
that._updateFadedRows();
|
||||
});
|
||||
var table = dt.table();
|
||||
var sliderElement = document.createElement('div');
|
||||
sliderElement.className = 'slider';
|
||||
|
||||
this.s = $.extend({},
|
||||
{
|
||||
dt: dt,
|
||||
table: $(table.node()),
|
||||
slider: $(sliderElement)
|
||||
},
|
||||
SlidingChild.defaults,
|
||||
options
|
||||
);
|
||||
|
||||
this._bind();
|
||||
};
|
||||
|
||||
SlidingChild.prototype = {
|
||||
_bind: function() {
|
||||
var that = this;
|
||||
var settings = that.s;
|
||||
$(settings.table, '> tbody').on('click', settings.selector, function() {
|
||||
var $this = $(this);
|
||||
var tr = $this.is('tr') ? $this : $this.closest('tr');
|
||||
|
||||
if (!tr.is('tr')) { return; } // throw error?
|
||||
|
||||
var dtRow = settings.dt.row(tr);
|
||||
that._toggleChild(dtRow);
|
||||
});
|
||||
},
|
||||
_toggleChild: function(dtRow) {
|
||||
var settings = this.s;
|
||||
if (dtRow.child.isShown()) {
|
||||
this._hideChild(dtRow, function() {});
|
||||
} else {
|
||||
var existingShownDtRow = settings.dt.row('.shown');
|
||||
if (existingShownDtRow.length && settings.toggle) {
|
||||
this._hideChild(existingShownDtRow, this._showChildCallback(dtRow));
|
||||
} else {
|
||||
this._showChild(dtRow);
|
||||
}
|
||||
}
|
||||
},
|
||||
_showChildCallback: function(dtRow) {
|
||||
return function( dtRow ) {
|
||||
this._showChild(dtRow);
|
||||
}.bind( this, dtRow );
|
||||
},
|
||||
_showChild: function(dtRow) {
|
||||
var $tr = $(dtRow.node());
|
||||
if (this.s.displayLoadingIndicator) {
|
||||
this._addLoadingIndicator($tr);
|
||||
}
|
||||
this.s.source( $tr, this._response(dtRow) );
|
||||
},
|
||||
_response: function(dtRow) {
|
||||
return function( dtRow, childData ) {
|
||||
this.__showChild( dtRow, childData );
|
||||
}.bind( this, dtRow );
|
||||
},
|
||||
__showChild: function(dtRow, data) {
|
||||
var settings = this.s;
|
||||
var slider = settings.slider;
|
||||
var $tr = $(dtRow.node());
|
||||
|
||||
if (settings.displayLoadingIndicator) {
|
||||
$('.'+this.s.loadingIndicatorClass).remove();
|
||||
}
|
||||
|
||||
slider.append(data);
|
||||
dtRow.child(slider, settings.childClass).show();
|
||||
|
||||
$tr.toggleClass('shown');
|
||||
this._updateFadedRows();
|
||||
|
||||
if (settings.animateShow) {
|
||||
this._showChildWithAnimation(dtRow);
|
||||
} else {
|
||||
this._showChildWithoutAnimation(dtRow);
|
||||
}
|
||||
},
|
||||
_showChildWithAnimation: function(dtRow) {
|
||||
var settings = this.s;
|
||||
$(settings.slider, dtRow.child()).slideDown(settings.animationSpeed, function () {
|
||||
settings.onShown(dtRow);
|
||||
});
|
||||
},
|
||||
_showChildWithoutAnimation: function(dtRow) {
|
||||
var settings = this.s;
|
||||
$(settings.slider, dtRow.child()).show();
|
||||
settings.onShown(dtRow);
|
||||
},
|
||||
_hideChild: function(dtRow, callback) {
|
||||
var settings = this.s;
|
||||
|
||||
$(dtRow.node()).toggleClass('shown');
|
||||
this._updateFadedRows();
|
||||
|
||||
if (settings.animateHide) {
|
||||
this._hideChildWithAnimation(dtRow, callback);
|
||||
} else {
|
||||
this._hideChildWithoutAnimation(dtRow, callback);
|
||||
}
|
||||
},
|
||||
_hideChildWithAnimation: function(dtRow, callback) {
|
||||
var settings = this.s;
|
||||
var slider = settings.slider;
|
||||
$(slider, dtRow.child()).slideUp(settings.animationSpeed, function () {
|
||||
dtRow.child.remove();
|
||||
slider.empty();
|
||||
settings.onHidden(dtRow);
|
||||
callback();
|
||||
});
|
||||
},
|
||||
_hideChildWithoutAnimation: function(dtRow, callback) {
|
||||
var settings = this.s;
|
||||
var slider = settings.slider;
|
||||
$(slider, dtRow.child()).hide();
|
||||
dtRow.child.remove();
|
||||
slider.empty();
|
||||
settings.onHidden(dtRow);
|
||||
callback();
|
||||
},
|
||||
_updateFadedRows: function() {
|
||||
if (this.s.fadeNonShowingRows) {
|
||||
this._fadeNonShowingRows();
|
||||
this._removeFadeFromShowingRows();
|
||||
} else {
|
||||
this._removeFadeFromRows();
|
||||
}
|
||||
},
|
||||
_fadeNonShowingRows: function() {
|
||||
if (this.s.dt.rows('.shown:visible').count()) {
|
||||
this.s.dt.rows(':visible:not(.shown):not(.faded)')
|
||||
.nodes()
|
||||
.to$()
|
||||
.css('opacity', this.s.fadeOpacity)
|
||||
.addClass('faded');
|
||||
} else {
|
||||
this._removeFadeFromRows();
|
||||
}
|
||||
},
|
||||
_removeFadeFromShowingRows: function() {
|
||||
this.s.dt.rows('.shown.faded:visible')
|
||||
.nodes()
|
||||
.to$()
|
||||
.css('opacity', 1)
|
||||
.removeClass('faded');
|
||||
},
|
||||
_removeFadeFromRows: function() {
|
||||
this.s.dt.rows('.faded')
|
||||
.nodes()
|
||||
.to$()
|
||||
.css('opacity', 1)
|
||||
.removeClass('faded');
|
||||
},
|
||||
_addLoadingIndicator: function($tr) {
|
||||
var position = $tr.position();
|
||||
var indicator = $(this.s.loadingIndicatorContent);
|
||||
indicator.addClass(this.s.loadingIndicatorClass);
|
||||
indicator.css('top', position.top);
|
||||
indicator.css('left', position.left);
|
||||
indicator.css('height', $tr.height());
|
||||
|
||||
$tr.append(indicator);
|
||||
}
|
||||
};
|
||||
|
||||
SlidingChild.defaults = {
|
||||
selector: "tr",
|
||||
childClass: 'child',
|
||||
source: function() {},
|
||||
toggle: true,
|
||||
animateShow: true,
|
||||
animateHide: true,
|
||||
fadeNonShowingRows: false,
|
||||
fadeOpacity: 0.4,
|
||||
animationSpeed: 200,
|
||||
onShown: function() {},
|
||||
onHidden: function() {},
|
||||
displayLoadingIndicator: false,
|
||||
loadingIndicatorClass: 'loading-indicator',
|
||||
loadingIndicatorContent: '<div style="background: black; color: white; display: flex; align-items: center; justify-content: center; opacity: 0.5; position: absolute; width: 100%; z-index: 100;">Loading...</div>'
|
||||
};
|
||||
|
||||
|
||||
$.fn.dataTable.SlidingChild = SlidingChild;
|
||||
$.fn.DataTable.SlidingChild = SlidingChild;
|
||||
|
||||
// Automatic initialisation listener
|
||||
$(document).on( 'init.dt', function ( e, settings ) {
|
||||
if ( e.namespace !== 'dt' ) {
|
||||
return;
|
||||
}
|
||||
|
||||
var api = new $.fn.dataTable.Api( settings );
|
||||
|
||||
if ( $( api.table().node() ).hasClass( 'slidingChild' ) ||
|
||||
settings.oInit.slidingChild ||
|
||||
$.fn.dataTable.defaults.slidingChild )
|
||||
{
|
||||
new SlidingChild( api, settings.oInit.slidingChild );
|
||||
}
|
||||
} );
|
||||
|
||||
|
||||
}));
|
@ -0,0 +1,7 @@
|
||||
(function(d){"function"===typeof define&&define.amd?define(["jquery","datatables.net"],function(f){return d(f,window,document)}):"object"===typeof exports?module.exports=function(f,e){f||(f=window);if(!e||!e.fn.dataTable)e=require("datatables.net")(f,e).$;return d(e,f,f.document)}:d(jQuery,document)})(function(d,f){var e=function(a,c){var b=this;a.on("draw",function(){b._updateFadedRows()});var h=a.table(),g=f.createElement("div");g.className="slider";this.s=d.extend({},{dt:a,table:d(h.node()),slider:d(g)},
|
||||
e.defaults,c);this._bind()};e.prototype={_bind:function(){var a=this,c=a.s;d(c.table,"> tbody").on("click",c.selector,function(){var b=d(this),b=b.is("tr")?b:b.closest("tr");b.is("tr")&&(b=c.dt.row(b),a._toggleChild(b))})},_toggleChild:function(a){var c=this.s;if(a.child.isShown())this._hideChild(a,function(){});else{var b=c.dt.row(".shown");b.length&&c.toggle?this._hideChild(b,this._showChildCallback(a)):this._showChild(a)}},_showChildCallback:function(a){return function(a){this._showChild(a)}.bind(this,
|
||||
a)},_showChild:function(a){this.s.source(d(a.node()),this._response(a))},_response:function(a){return function(a,b){this.__showChild(a,b)}.bind(this,a)},__showChild:function(a,c){var b=this.s,e=b.slider;e.append(c);a.child(e,b.childClass).show();d(a.node()).toggleClass("shown");this._updateFadedRows();b.animateShow?this._showChildWithAnimation(a):this._showChildWithoutAnimation(a)},_showChildWithAnimation:function(a){var c=this.s;d(c.slider,a.child()).slideDown(c.animationSpeed,function(){c.onShown(a)})},
|
||||
_showChildWithoutAnimation:function(a){var c=this.s;d(c.slider,a.child()).show();c.onShown(a)},_hideChild:function(a,c){var b=this.s;d(a.node()).toggleClass("shown");this._updateFadedRows();b.animateHide?this._hideChildWithAnimation(a,c):this._hideChildWithoutAnimation(a,c)},_hideChildWithAnimation:function(a,c){var b=this.s,e=b.slider;d(e,a.child()).slideUp(b.animationSpeed,function(){a.child.remove();e.empty();b.onHidden(a);c()})},_hideChildWithoutAnimation:function(a,c){var b=this.s,e=b.slider;
|
||||
d(e,a.child()).hide();a.child.remove();e.empty();b.onHidden(a);c()},_updateFadedRows:function(){this.s.fadeNonShowingRows?(this._fadeNonShowingRows(),this._removeFadeFromShowingRows()):this._removeFadeFromRows()},_fadeNonShowingRows:function(){this.s.dt.rows(".shown:visible").count()?this.s.dt.rows(":visible:not(.shown):not(.faded)").nodes().to$().css("opacity",this.s.fadeOpacity).addClass("faded"):this._removeFadeFromRows()},_removeFadeFromShowingRows:function(){this.s.dt.rows(".shown.faded:visible").nodes().to$().css("opacity",
|
||||
1).removeClass("faded")},_removeFadeFromRows:function(){this.s.dt.rows(".faded").nodes().to$().css("opacity",1).removeClass("faded")}};e.defaults={selector:"tr",childClass:"child",source:function(){},toggle:!0,animateShow:!0,animateHide:!0,fadeNonShowingRows:!1,fadeOpacity:0.4,animationSpeed:200,onShown:function(){},onHidden:function(){}};d.fn.dataTable.SlidingChild=e;d.fn.DataTable.SlidingChild=e;d(f).on("init.dt",function(a,c){if("dt"===a.namespace){var b=new d.fn.dataTable.Api(c);(d(b.table().node()).hasClass("slidingChild")||
|
||||
c.oInit.slidingChild||d.fn.dataTable.defaults.slidingChild)&&new e(b,c.oInit.slidingChild)}})});
|
@ -1,128 +0,0 @@
|
||||
/**
|
||||
* @summary SlidingChild
|
||||
* @description Plug-in to show/hide row child data
|
||||
* @version 1.0.0
|
||||
* @file slidingchild.js
|
||||
* @author datahandler (www.datahandler.uk)
|
||||
* @copyright Copyright datahandler (www.datahandler.uk)
|
||||
*
|
||||
* License MIT - http://datatables.net/license/mit
|
||||
*/
|
||||
|
||||
/**
|
||||
* Example usage
|
||||
* @example
|
||||
* var table = $('#table_id').DataTable();
|
||||
* slidingChild =
|
||||
* new $.fn.dataTable.SlidingChild(table, {
|
||||
* ajax: {
|
||||
* requestType: 'POST',
|
||||
* requestUrl: '/Home/GetChildData',
|
||||
* dataType: 'HTML',
|
||||
* requestDataCallback: myRequestDataCallback
|
||||
* }
|
||||
* });
|
||||
*/
|
||||
(function ($) {
|
||||
var SlidingChild = function (dt, options) {
|
||||
var opts = $.extend({}, SlidingChild.defaults, options);
|
||||
|
||||
// bind to selector click
|
||||
$(opts.selector).on('click', function () {
|
||||
var $this = $(this);
|
||||
var dtRow = $this.is('tr') ? $this : $this.closest('tr');
|
||||
|
||||
if (!dtRow.is('tr')) { return; } // throw error?
|
||||
// check row belongs to this table?
|
||||
|
||||
dtRow = dt.row(dtRow);
|
||||
toggleChild(dtRow);
|
||||
});
|
||||
|
||||
var toggleChild = function (dtRow) {
|
||||
// if child already showing, close it.
|
||||
if (dtRow.child.isShown()) {
|
||||
closeChild(dtRow);
|
||||
}
|
||||
else {
|
||||
// closes existing showing child, if any
|
||||
if (opts.toggleChild) closeChild(dt.row('.shown'));
|
||||
|
||||
showChildData(dtRow);
|
||||
}
|
||||
};
|
||||
// code borrowed from the resource at: https://datatables.net/blog/2014-10-02
|
||||
var closeChild = function (dtRow) {
|
||||
if (dtRow) {
|
||||
var showingRow = $(dtRow.node());
|
||||
$(opts.sliderSelector, dtRow.child()).slideUp(function () {
|
||||
dtRow.child.remove();
|
||||
showingRow.removeClass('shown');
|
||||
$(dt.table().node()).trigger('childClosed', [dtRow]);
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
var showChildData = function (dtRow) {
|
||||
if (opts.useRowData) {
|
||||
showChildDataFromRow(dtRow);
|
||||
}
|
||||
else {
|
||||
$.ajax({
|
||||
type: opts.ajax.requestType,
|
||||
url: opts.ajax.requestUrl,
|
||||
beforeSend: function(xhr, settings) {
|
||||
if (opts.ajax.requestDataCallback) {
|
||||
this.data = opts.ajax.requestDataCallback(dtRow);
|
||||
}
|
||||
},
|
||||
contentType: opts.ajax.contentType,
|
||||
dataType: opts.ajax.dataType,
|
||||
success: function (response) {
|
||||
var data = response;
|
||||
if (opts.dataFormatCallback) {
|
||||
data = opts.dataFormatCallback(response);
|
||||
}
|
||||
showChild(dtRow, data);
|
||||
},
|
||||
error: function (response) { showChild(dtRow, response); }
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
var showChildDataFromRow = function(dtRow) {
|
||||
if (!opts.dataFormatCallback) { return; } // throw error?
|
||||
var data = opts.dataFormatCallback(dtRow.data());
|
||||
showChild(dtRow, data);
|
||||
}
|
||||
|
||||
var showChild = function(dtRow, data) {
|
||||
var selectedRow = $(dtRow.node());
|
||||
dtRow.child(data).show();
|
||||
|
||||
$(opts.sliderSelector, dtRow.child()).slideDown(function () {
|
||||
selectedRow.addClass('shown');
|
||||
|
||||
$(dt.table().node()).trigger('childShown', [dtRow]);
|
||||
});
|
||||
};
|
||||
};
|
||||
|
||||
SlidingChild.defaults = {
|
||||
selector: "tr",
|
||||
toggleChild: false,
|
||||
useRowData: false,
|
||||
ajax: {
|
||||
requestType: "GET",
|
||||
requestDataCallback: null,
|
||||
requestUrl: null,
|
||||
contentType: "application/json; charset=utf-8",
|
||||
dataType: "json"
|
||||
},
|
||||
dataFormatCallback: null,
|
||||
sliderSelector: 'div.slider'
|
||||
};
|
||||
|
||||
$.fn.dataTable.SlidingChild = SlidingChild;
|
||||
$.fn.DataTable.SlidingChild = SlidingChild;
|
||||
}(jQuery));
|
@ -0,0 +1,50 @@
|
||||
/**
|
||||
* Sorts a column containing chapter numbers. This can be most useful when
|
||||
* using DataTables for a book or book reference style application. By
|
||||
* default, five sections are supported (a.b.c.d.e) with each being upto
|
||||
* four-digits long. Those defaults are controlled by constMaxSections and
|
||||
* constMaxSectionDigits respectively, and can be easily changed
|
||||
*
|
||||
* @name chapter
|
||||
* @summary Sort book chapters numerically
|
||||
* @author Colin Marks
|
||||
*
|
||||
* @example
|
||||
* $('#example').dataTable( {
|
||||
* columnDefs: [
|
||||
* { type: 'chapter', targets: 0 }
|
||||
* ]
|
||||
* } );
|
||||
*/
|
||||
|
||||
jQuery.extend(jQuery.fn.dataTableExt.oSort, {
|
||||
'chapter-pre': function(a) {
|
||||
function makeFiller(count) {
|
||||
return count === 0 ? '' : Array(count + 1).join('0');
|
||||
}
|
||||
|
||||
var constMaxSections = 5;
|
||||
var constMaxSectionDigits = 4;
|
||||
|
||||
var filler;
|
||||
var result = '';
|
||||
var sections = a.split('.');
|
||||
|
||||
for (var i = 0; i < constMaxSections; i++) {
|
||||
filler = i < sections.length ? constMaxSectionDigits - sections[i].length : constMaxSectionDigits;
|
||||
|
||||
result += filler === 0 ? '' : Array(filler + 1).join('0');
|
||||
result += i < sections.length ? sections[i] : '';
|
||||
}
|
||||
|
||||
return result;
|
||||
},
|
||||
|
||||
'chapter-asc': function(a, b) {
|
||||
return a < b ? -1 : a > b ? 1 : 0;
|
||||
},
|
||||
|
||||
'chapter-desc': function(a, b) {
|
||||
return a < b ? 1 : a > b ? -1 : 0;
|
||||
}
|
||||
});
|
Loading…
Reference in new issue