|
|
|
/*!
|
|
|
|
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);
|