/**
* @summary FixedColumns
* @description Freeze columns in place on a scrolling DataTable
* @file FixedColumns.js
* @version 2.5.0.dev
* @author Allan Jardine (www.sprymedia.co.uk)
* @license GPL v2 or BSD 3 point style
* @contact www.sprymedia.co.uk/contact
*
* @copyright Copyright 2010-2011 Allan Jardine, all rights reserved.
*
* This source file is free software, under either the GPL v2 license or a
* BSD style license, available at:
* http://datatables.net/license_gpl2
* http://datatables.net/license_bsd
*/
/* Global scope for FixedColumns */
var FixedColumns;
(function($, window, document) {
/**
* When making use of DataTables' x-axis scrolling feature, you may wish to
* fix the left most column in place. This plug-in for DataTables provides
* exactly this option (note for non-scrolling tables, please use the
* FixedHeader plug-in, which can fix headers, footers and columns). Key
* features include:
*
* - Freezes the left or right most columns to the side of the table
* - Option to freeze two or more columns
* - Full integration with DataTables' scrolling options
* - Speed - FixedColumns is fast in its operation
*
*
* @class
* @constructor
* @param {object} oDT DataTables instance
* @param {object} [oInit={}] Configuration object for FixedColumns. Options are defined by {@link FixedColumns.defaults}
*
* @requires jQuery 1.3+
* @requires DataTables 1.8.0+
*
* @example
* var oTable = $('#example').dataTable( {
* "sScrollX": "100%"
* } );
* new FixedColumns( oTable );
*/
FixedColumns = function ( oDT, oInit ) {
var that = this;
/* Sanity check - you just know it will happen */
if ( ! this instanceof FixedColumns )
{
alert( "FixedColumns warning: FixedColumns must be initialised with the 'new' keyword." );
return;
}
if ( typeof oInit == 'undefined' )
{
oInit = {};
}
/**
* Settings object which contains customisable information for FixedColumns instance
* @namespace
* @extends FixedColumns.defaults
*/
this.s = {
/**
* DataTables settings objects
* @type object
* @default Obtained from DataTables instance
*/
"dt": oDT.fnSettings(),
/**
* Number of columns in the DataTable - stored for quick access
* @type int
* @default Obtained from DataTables instance
*/
"iTableColumns": oDT.fnSettings().aoColumns.length,
/**
* Original outer widths of the columns as rendered by DataTables - used to calculate
* the FixedColumns grid bounding box
* @type array.
* @default []
*/
"aiOuterWidths": [],
/**
* Original inner widths of the columns as rendered by DataTables - used to apply widths
* to the columns
* @type array.
* @default []
*/
"aiInnerWidths": []
};
/**
* DOM elements used by the class instance
* @namespace
*
*/
this.dom = {
/**
* DataTables scrolling element
* @type node
* @default null
*/
"scroller": null,
/**
* DataTables header table
* @type node
* @default null
*/
"header": null,
/**
* DataTables body table
* @type node
* @default null
*/
"body": null,
/**
* DataTables footer table
* @type node
* @default null
*/
"footer": null,
/**
* Display grid elements
* @namespace
*/
"grid": {
/**
* Grid wrapper. This is the container element for the 3x3 grid
* @type node
* @default null
*/
"wrapper": null,
/**
* DataTables scrolling element. This element is the DataTables
* component in the display grid (making up the main table - i.e.
* not the fixed columns).
* @type node
* @default null
*/
"dt": null,
/**
* Left fixed column grid components
* @namespace
*/
"left": {
"wrapper": null,
"head": null,
"body": null,
"foot": null
},
/**
* Right fixed column grid components
* @namespace
*/
"right": {
"wrapper": null,
"head": null,
"body": null,
"foot": null
}
},
/**
* Cloned table nodes
* @namespace
*/
"clone": {
/**
* Left column cloned table nodes
* @namespace
*/
"left": {
/**
* Cloned header table
* @type node
* @default null
*/
"header": null,
/**
* Cloned body table
* @type node
* @default null
*/
"body": null,
/**
* Cloned footer table
* @type node
* @default null
*/
"footer": null
},
/**
* Right column cloned table nodes
* @namespace
*/
"right": {
/**
* Cloned header table
* @type node
* @default null
*/
"header": null,
/**
* Cloned body table
* @type node
* @default null
*/
"body": null,
/**
* Cloned footer table
* @type node
* @default null
*/
"footer": null
}
}
};
/* Attach the instance to the DataTables instance so it can be accessed easily */
this.s.dt.oFixedColumns = this;
/* Let's do it */
if ( ! this.s.dt._bInitComplete )
{
this.s.dt.oApi._fnCallbackReg( this.s.dt, 'aoInitComplete', function () {
that._fnConstruct( oInit );
}, 'FixedColumns' );
}
else
{
this._fnConstruct( oInit );
}
};
FixedColumns.prototype = {
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Public methods
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* Update the fixed columns - including headers and footers. Note that FixedColumns will
* automatically update the display whenever the host DataTable redraws.
* @returns {void}
* @example
* var oTable = $('#example').dataTable( {
* "sScrollX": "100%"
* } );
* var oFC = new FixedColumns( oTable );
*
* // at some later point when the table has been manipulated....
* oFC.fnUpdate();
*/
"fnUpdate": function ()
{
this._fnDraw( true );
},
/**
* Recalculate the resizes of the 3x3 grid that FixedColumns uses for display of the table.
* This is useful if you update the width of the table container. Note that FixedColumns will
* perform this function automatically when the window.resize event is fired.
* @returns {void}
* @example
* var oTable = $('#example').dataTable( {
* "sScrollX": "100%"
* } );
* var oFC = new FixedColumns( oTable );
*
* // Resize the table container and then have FixedColumns adjust its layout....
* $('#content').width( 1200 );
* oFC.fnRedrawLayout();
*/
"fnRedrawLayout": function ()
{
this._fnColCalc();
this._fnGridLayout();
this.fnUpdate();
},
/**
* Mark a row such that it's height should be recalculated when using 'semiauto' row
* height matching. This function will have no effect when 'none' or 'auto' row height
* matching is used.
* @param {Node} nTr TR element that should have it's height recalculated
* @returns {void}
* @example
* var oTable = $('#example').dataTable( {
* "sScrollX": "100%"
* } );
* var oFC = new FixedColumns( oTable );
*
* // manipulate the table - mark the row as needing an update then update the table
* // this allows the redraw performed by DataTables fnUpdate to recalculate the row
* // height
* oFC.fnRecalculateHeight();
* oTable.fnUpdate( $('#example tbody tr:eq(0)')[0], ["insert date", 1, 2, 3 ... ]);
*/
"fnRecalculateHeight": function ( nTr )
{
delete nTr._DTTC_iHeight;
nTr.style.height = 'auto';
},
/**
* Set the height of a given row - provides cross browser compatibility
* @param {Node} nTarget TR element that should have it's height recalculated
* @param {int} iHeight Height in pixels to set
* @returns {void}
* @example
* var oTable = $('#example').dataTable( {
* "sScrollX": "100%"
* } );
* var oFC = new FixedColumns( oTable );
*
* // You may want to do this after manipulating a row in the fixed column
* oFC.fnSetRowHeight( $('#example tbody tr:eq(0)')[0], 50 );
*/
"fnSetRowHeight": function ( nTarget, iHeight )
{
nTarget.style.height = iHeight+"px";
},
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Private methods (they are of course public in JS, but recommended as private)
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* Initialisation for FixedColumns
* @param {Object} oInit User settings for initialisation
* @returns {void}
* @private
*/
"_fnConstruct": function ( oInit )
{
var i, iLen, iWidth,
that = this;
/* Sanity checking */
if ( typeof this.s.dt.oInstance.fnVersionCheck != 'function' ||
this.s.dt.oInstance.fnVersionCheck( '1.8.0' ) !== true )
{
alert( "FixedColumns "+FixedColumns.VERSION+" required DataTables 1.8.0 or later. "+
"Please upgrade your DataTables installation" );
return;
}
if ( this.s.dt.oScroll.sX === "" )
{
this.s.dt.oInstance.oApi._fnLog( this.s.dt, 1, "FixedColumns is not needed (no "+
"x-scrolling in DataTables enabled), so no action will be taken. Use 'FixedHeader' for "+
"column fixing when scrolling is not enabled" );
return;
}
/* Apply the settings from the user / defaults */
this.s = $.extend( true, this.s, FixedColumns.defaults, oInit );
/* Set up the DOM as we need it and cache nodes */
this.dom.grid.dt = $(this.s.dt.nTable).parents('div.dataTables_scroll')[0];
this.dom.scroller = $('div.dataTables_scrollBody', this.dom.grid.dt )[0];
/* Set up the DOM that we want for the fixed column layout grid */
this._fnColCalc();
this._fnGridSetup();
/* Event handlers */
// When the body is scrolled - scroll the left and right columns
$(this.dom.scroller).scroll( function () {
if ( that.s.iLeftColumns > 0 )
{
that.dom.grid.left.liner.scrollTop = that.dom.scroller.scrollTop;
}
if ( that.s.iRightColumns > 0 )
{
that.dom.grid.right.liner.scrollTop = that.dom.scroller.scrollTop;
}
} );
if ( that.s.iLeftColumns > 0 )
{
// When scrolling the left column, scroll the body and right column
$(that.dom.grid.left.liner).scroll( function () {
that.dom.scroller.scrollTop = that.dom.grid.left.liner.scrollTop;
if ( that.s.iRightColumns > 0 )
{
that.dom.grid.right.liner.scrollTop = that.dom.grid.left.liner.scrollTop;
}
} );
// When x-scrolling in the fixed column(s) we need to pass that information on
// to the table's body, since otherwise we just swallow that information
// TODO - This is far from perfect - how can be be improved?
$(that.dom.grid.left.liner).bind( "mousewheel", function(e) {
var xDelta = e.originalEvent.wheelDeltaX / 3;
that.dom.scroller.scrollLeft -= xDelta;
} );
}
if ( that.s.iRightColumns > 0 )
{
// When scrolling the right column, scroll the body and the left column
$(that.dom.grid.right.liner).scroll( function () {
that.dom.scroller.scrollTop = that.dom.grid.right.liner.scrollTop;
if ( that.s.iLeftColumns > 0 )
{
that.dom.grid.left.liner.scrollTop = that.dom.grid.right.liner.scrollTop;
}
} );
// Adjust the body for x-scrolling
$(that.dom.grid.right.liner).bind( "mousewheel", function(e) {
var xDelta = e.originalEvent.wheelDeltaX / 3;
that.dom.scroller.scrollLeft -= xDelta;
} );
}
$(window).resize( function () {
that._fnGridLayout.call( that );
} );
var bFirstDraw = true;
this.s.dt.aoDrawCallback = [ {
"fn": function () {
that._fnDraw.call( that, bFirstDraw );
that._fnGridLayout( that );
bFirstDraw = false;
},
"sName": "FixedColumns"
} ].concat( this.s.dt.aoDrawCallback );
/* Get things right to start with - note that due to adjusting the columns, there must be
* another redraw of the main table. It doesn't need to be a full redraw however.
*/
this._fnGridLayout();
this.s.dt.oInstance.fnDraw(false);
},
/**
* Calculate the column widths for the grid layout
* @returns {void}
* @private
*/
"_fnColCalc": function ()
{
var that = this;
var iScrollWidth = $(this.dom.grid.dt).width();
var iLeftWidth = 0;
var iRightWidth = 0;
this.s.aiInnerWidths = [];
$('tbody>tr:eq(0)>td, tbody>tr:eq(0)>th', this.s.dt.nTable).each( function (i) {
// Inner width is used to assign widths to cells
that.s.aiInnerWidths.push( $(this).width() );
// Outer width is used to calculate the container
var iWidth = $(this).outerWidth();
that.s.aiOuterWidths.push( iWidth );
if ( i < that.s.iLeftColumns )
{
iLeftWidth += iWidth;
}
if ( that.s.iTableColumns-that.s.iRightColumns <= i )
{
iRightWidth += iWidth;
}
} );
this.s.iLeftWidth = this.s.sLeftWidth == 'fixed' ?
iLeftWidth : (iLeftWidth/iScrollWidth) * 100;
this.s.iRightWidth = this.s.sRightWidth == 'fixed' ?
iRightWidth : (iRightWidth/iScrollWidth) * 100;
},
/**
* Set up the DOM for the fixed column. The way the layout works is to create a 1x3 grid
* for the left column, the DataTable (for which we just reuse the scrolling element DataTable
* puts into the DOM) and the right column. In each of he two fixed column elements there is a
* grouping wrapper element and then a head, body and footer wrapper. In each of these we then
* place the cloned header, body or footer tables. This effectively gives as 3x3 grid structure.
* @returns {void}
* @private
*/
"_fnGridSetup": function ()
{
var that = this;
var oOverflow = this._fnDTOverflow();
var block;
this.dom.body = this.s.dt.nTable;
this.dom.header = this.s.dt.nTHead.parentNode;
this.dom.header.parentNode.parentNode.style.position = "relative";
var nSWrapper =
$('')[0];
var nLeft = nSWrapper.childNodes[0];
var nRight = nSWrapper.childNodes[1];
this.dom.grid.dt.parentNode.insertBefore( nSWrapper, this.dom.grid.dt );
nSWrapper.appendChild( this.dom.grid.dt );
this.dom.grid.wrapper = nSWrapper;
if ( this.s.iLeftColumns > 0 )
{
this.dom.grid.left.wrapper = nLeft;
this.dom.grid.left.head = nLeft.childNodes[0];
this.dom.grid.left.body = nLeft.childNodes[1];
this.dom.grid.left.liner = $('div.DTFC_LeftBodyLiner', nSWrapper)[0];
nSWrapper.appendChild( nLeft );
}
if ( this.s.iRightColumns > 0 )
{
this.dom.grid.right.wrapper = nRight;
this.dom.grid.right.head = nRight.childNodes[0];
this.dom.grid.right.body = nRight.childNodes[1];
this.dom.grid.right.liner = $('div.DTFC_RightBodyLiner', nSWrapper)[0];
block = $('div.DTFC_RightHeadBlocker', nSWrapper)[0];
block.style.width = oOverflow.bar+"px";
block.style.right = -oOverflow.bar+"px";
this.dom.grid.right.headBlock = block;
block = $('div.DTFC_RightFootBlocker', nSWrapper)[0];
block.style.width = oOverflow.bar+"px";
block.style.right = -oOverflow.bar+"px";
this.dom.grid.right.footBlock = block;
nSWrapper.appendChild( nRight );
}
if ( this.s.dt.nTFoot )
{
this.dom.footer = this.s.dt.nTFoot.parentNode;
if ( this.s.iLeftColumns > 0 )
{
this.dom.grid.left.foot = nLeft.childNodes[2];
}
if ( this.s.iRightColumns > 0 )
{
this.dom.grid.right.foot = nRight.childNodes[2];
}
}
},
/**
* Style and position the grid used for the FixedColumns layout based on the instance settings.
* Specifically sLeftWidth ('fixed' or 'absolute'), iLeftWidth (px if fixed, % if absolute) and
* there 'right' counterparts.
* @returns {void}
* @private
*/
"_fnGridLayout": function ()
{
var oGrid = this.dom.grid;
var iWidth = $(oGrid.wrapper).width();
var iBodyHeight = $(this.s.dt.nTable.parentNode).height();
var iFullHeight = $(this.s.dt.nTable.parentNode.parentNode).height();
var iLeftWidth, iRight, iRightWidth;
var oOverflow = this._fnDTOverflow();
if ( this.s.sLeftWidth == 'fixed' )
{
iLeftWidth = this.s.iLeftWidth;
}
else
{
iLeftWidth = ( this.s.iLeftWidth / 100 ) * iWidth;
}
if ( this.s.sRightWidth == 'fixed' )
{
iRightWidth = this.s.iRightWidth;
}
else
{
iRightWidth = ( this.s.iRightWidth / 100 ) * iWidth;
}
// When x scrolling - don't paint the fixed columns over the x scrollbar
if ( oOverflow.x )
{
iBodyHeight -= oOverflow.bar;
}
oGrid.wrapper.style.height = iFullHeight+"px";
if ( this.s.iLeftColumns > 0 )
{
oGrid.left.wrapper.style.width = iLeftWidth+"px";
oGrid.left.wrapper.style.height = iFullHeight+"px";
oGrid.left.body.style.height = iBodyHeight+"px";
if ( oGrid.left.foot ) {
oGrid.left.foot.style.top = (oOverflow.x ? oOverflow.bar : 0)+"px"; // shift footer for scrollbar
}
oGrid.left.liner.style.width = (iLeftWidth+oOverflow.bar)+"px";
oGrid.left.liner.style.height = iBodyHeight+"px";
}
if ( this.s.iRightColumns > 0 )
{
iRight = iWidth - iRightWidth;
if ( oOverflow.y )
{
iRight -= oOverflow.bar;
}
oGrid.right.wrapper.style.width = iRightWidth+"px";
oGrid.right.wrapper.style.left = iRight+"px";
oGrid.right.wrapper.style.height = iFullHeight+"px";
oGrid.right.body.style.height = iBodyHeight+"px";
if ( oGrid.right.foot ) {
oGrid.right.foot.style.top = (oOverflow.x ? oOverflow.bar : 0)+"px";
}
oGrid.right.liner.style.width = (iRightWidth+oOverflow.bar)+"px";
oGrid.right.liner.style.height = iBodyHeight+"px";
oGrid.right.headBlock.style.display = oOverflow.x ? 'block' : 'none';
oGrid.right.footBlock.style.display = oOverflow.x ? 'block' : 'none';
}
},
/**
* Get information about the DataTable's scrolling state - specifically if the table is scrolling
* on either the x or y axis, and also the scrollbar width.
* @returns {object} Information about the DataTables scrolling state with the properties:
* 'x', 'y' and 'bar'
* @private
*/
"_fnDTOverflow": function ()
{
var nTable = this.s.dt.nTable;
var nTableScrollBody = nTable.parentNode;
var out = {
"x": false,
"y": false,
"bar": this.s.dt.oScroll.iBarWidth
};
if ( nTable.offsetWidth > nTableScrollBody.offsetWidth )
{
out.x = true;
}
if ( nTable.offsetHeight > nTableScrollBody.offsetHeight )
{
out.y = true;
}
return out;
},
/**
* Clone and position the fixed columns
* @returns {void}
* @param {Boolean} bAll Indicate if the header and footer should be updated as well (true)
* @private
*/
"_fnDraw": function ( bAll )
{
this._fnCloneLeft( bAll );
this._fnCloneRight( bAll );
/* Draw callback function */
if ( this.s.fnDrawCallback !== null )
{
this.s.fnDrawCallback.call( this, this.dom.clone.left, this.dom.clone.right );
}
/* Event triggering */
$(this).trigger( 'draw', {
"leftClone": this.dom.clone.left,
"rightClone": this.dom.clone.right
} );
},
/**
* Clone the right columns
* @returns {void}
* @param {Boolean} bAll Indicate if the header and footer should be updated as well (true)
* @private
*/
"_fnCloneRight": function ( bAll )
{
if ( this.s.iRightColumns <= 0 )
{
return;
}
var that = this,
i, jq,
aiColumns = [];
for ( i=this.s.iTableColumns-this.s.iRightColumns ; ithead', oClone.header);
jqCloneThead.empty();
/* Add the created cloned TR elements to the table */
for ( i=0, iLen=aoCloneLayout.length ; ithead', oClone.header)[0] );
for ( i=0, iLen=aoCloneLayout.length ; itbody>tr', that.dom.body).css('height', 'auto');
}
if ( oClone.body !== null )
{
oClone.body.parentNode.removeChild( oClone.body );
oClone.body = null;
}
oClone.body = $(this.dom.body).clone(true)[0];
oClone.body.className += " DTFC_Cloned";
oClone.body.style.paddingBottom = this.s.dt.oScroll.iBarWidth+"px";
oClone.body.style.marginBottom = (this.s.dt.oScroll.iBarWidth*2)+"px"; /* For IE */
if ( oClone.body.getAttribute('id') !== null )
{
oClone.body.removeAttribute('id');
}
$('>thead>tr', oClone.body).empty();
$('>tfoot', oClone.body).remove();
var nBody = $('tbody', oClone.body)[0];
$(nBody).empty();
if ( this.s.dt.aiDisplay.length > 0 )
{
/* Copy the DataTables' header elements to force the column width in exactly the
* same way that DataTables does it - have the header element, apply the width and
* colapse it down
*/
var nInnerThead = $('>thead>tr', oClone.body)[0];
for ( iIndex=0 ; iIndextbody>tr', that.dom.body).each( function (z) {
var n = this.cloneNode(false);
var i = that.s.dt.oFeatures.bServerSide===false ?
that.s.dt.aiDisplay[ that.s.dt._iDisplayStart+z ] : z;
for ( iIndex=0 ; iIndex 0 )
{
nClone = $( aTds[iColumn] ).clone(true)[0];
n.appendChild( nClone );
}
}
nBody.appendChild( n );
} );
}
else
{
$('>tbody>tr', that.dom.body).each( function (z) {
nClone = this.cloneNode(true);
nClone.className += ' DTFC_NoData';
$('td', nClone).html('');
nBody.appendChild( nClone );
} );
}
oClone.body.style.width = "100%";
oClone.body.style.margin = "0";
oClone.body.style.padding = "0";
if ( bAll )
{
if ( typeof this.s.dt.oScroller != 'undefined' )
{
oGrid.liner.appendChild( this.s.dt.oScroller.dom.force.cloneNode(true) );
}
}
oGrid.liner.appendChild( oClone.body );
this._fnEqualiseHeights( 'tbody', that.dom.body, oClone.body );
/*
* Footer
*/
if ( this.s.dt.nTFoot !== null )
{
if ( bAll )
{
if ( oClone.footer !== null )
{
oClone.footer.parentNode.removeChild( oClone.footer );
}
oClone.footer = $(this.dom.footer).clone(true)[0];
oClone.footer.className += " DTFC_Cloned";
oClone.footer.style.width = "100%";
oGrid.foot.appendChild( oClone.footer );
/* Copy the footer just like we do for the header */
aoCloneLayout = this._fnCopyLayout( this.s.dt.aoFooter, aiColumns );
var jqCloneTfoot = $('>tfoot', oClone.footer);
jqCloneTfoot.empty();
for ( i=0, iLen=aoCloneLayout.length ; itfoot', oClone.footer)[0] );
for ( i=0, iLen=aoCloneLayout.length ; ithead', oClone.header)[0] );
$(anUnique).each( function (i) {
iColumn = aiColumns[i];
this.style.width = that.s.aiInnerWidths[iColumn]+"px";
} );
if ( that.s.dt.nTFoot !== null )
{
anUnique = this.s.dt.oApi._fnGetUniqueThs( this.s.dt, $('>tfoot', oClone.footer)[0] );
$(anUnique).each( function (i) {
iColumn = aiColumns[i];
this.style.width = that.s.aiInnerWidths[iColumn]+"px";
} );
}
},
/**
* From a given table node (THEAD etc), get a list of TR direct child elements
* @param {Node} nIn Table element to search for TR elements (THEAD, TBODY or TFOOT element)
* @returns {Array} List of TR elements found
* @private
*/
"_fnGetTrNodes": function ( nIn )
{
var aOut = [];
for ( var i=0, iLen=nIn.childNodes.length ; i'+nodeName+'>tr:eq(0)', original).children(':first'),
iBoxHack = jqBoxHack.outerHeight() - jqBoxHack.height(),
anOriginal = this._fnGetTrNodes( rootOriginal ),
anClone = this._fnGetTrNodes( rootClone );
for ( i=0, iLen=anClone.length ; i iHeightOriginal ? iHeightClone : iHeightOriginal;
if ( this.s.sHeightMatch == 'semiauto' )
{
anOriginal[i]._DTTC_iHeight = iHeight;
}
anClone[i].style.height = iHeight+"px";
anOriginal[i].style.height = iHeight+"px";
}
}
};
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Statics
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* FixedColumns default settings for initialisation
* @namespace
* @static
*/
FixedColumns.defaults = {
/**
* Number of left hand columns to fix in position
* @type int
* @default 1
* @static
* @example
* var oTable = $('#example').dataTable( {
* "sScrollX": "100%"
* } );
* new FixedColumns( oTable, {
* "iLeftColumns": 2
* } );
*/
"iLeftColumns": 1,
/**
* Number of right hand columns to fix in position
* @type int
* @default 0
* @static
* @example
* var oTable = $('#example').dataTable( {
* "sScrollX": "100%"
* } );
* new FixedColumns( oTable, {
* "iRightColumns": 1
* } );
*/
"iRightColumns": 0,
/**
* Draw callback function which is called when FixedColumns has redrawn the fixed assets
* @type function(object, object):void
* @default null
* @static
* @example
* var oTable = $('#example').dataTable( {
* "sScrollX": "100%"
* } );
* new FixedColumns( oTable, {
* "fnDrawCallback": function () {
* alert( "FixedColumns redraw" );
* }
* } );
*/
"fnDrawCallback": null,
/**
* Type of left column size calculation. Can take the values of "fixed", whereby the iLeftWidth
* value will be treated as a pixel value, or "relative" for which case iLeftWidth will be
* treated as a percentage value.
* @type string
* @default fixed
* @static
* @example
* var oTable = $('#example').dataTable( {
* "sScrollX": "100%"
* } );
* new FixedColumns( oTable, {
* "sLeftWidth": "relative",
* "iLeftWidth": 10 // percentage
* } );
*/
"sLeftWidth": "fixed",
/**
* Width to set for the width of the left fixed column(s) - note that the behaviour of this
* property is directly effected by the sLeftWidth property. If not defined then this property
* is calculated automatically from what has been assigned by DataTables.
* @type int
* @default null
* @static
* @example
* var oTable = $('#example').dataTable( {
* "sScrollX": "100%"
* } );
* new FixedColumns( oTable, {
* "iLeftWidth": 100 // pixels
* } );
*/
"iLeftWidth": null,
/**
* Type of right column size calculation. Can take the values of "fixed", whereby the
* iRightWidth value will be treated as a pixel value, or "relative" for which case
* iRightWidth will be treated as a percentage value.
* @type string
* @default fixed
* @static
* @example
* var oTable = $('#example').dataTable( {
* "sScrollX": "100%"
* } );
* new FixedColumns( oTable, {
* "sRightWidth": "relative",
* "iRightWidth": 10 // percentage
* } );
*/
"sRightWidth": "fixed",
/**
* Width to set for the width of the right fixed column(s) - note that the behaviour of this
* property is directly effected by the sRightWidth property. If not defined then this property
* is calculated automatically from what has been assigned by DataTables.
* @type int
* @default null
* @static
* @example
* var oTable = $('#example').dataTable( {
* "sScrollX": "100%"
* } );
* new FixedColumns( oTable, {
* "iRightWidth": 200 // pixels
* } );
*/
"iRightWidth": null,
/**
* Height matching algorthim to use. This can be "none" which will result in no height
* matching being applied by FixedColumns (height matching could be forced by CSS in this
* case), "semiauto" whereby the height calculation will be performed once, and the result
* cached to be used again (fnRecalculateHeight can be used to force recalculation), or
* "auto" when height matching is performed on every draw (slowest but must accurate)
* @type string
* @default semiauto
* @static
* @example
* var oTable = $('#example').dataTable( {
* "sScrollX": "100%"
* } );
* new FixedColumns( oTable, {
* "sHeightMatch": "auto"
* } );
*/
"sHeightMatch": "semiauto"
};
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Constants
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* Name of this class
* @constant CLASS
* @type String
* @default FixedColumns
*/
FixedColumns.prototype.CLASS = "FixedColumns";
/**
* FixedColumns version
* @constant FixedColumns.VERSION
* @type String
* @default See code
* @static
*/
FixedColumns.VERSION = "2.5.0.dev";
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Fired events (for documentation)
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/**
* Event fired whenever FixedColumns redraws the fixed columns (i.e. clones the table elements from the main DataTable). This will occur whenever the DataTable that the FixedColumns instance is attached does its own draw.
* @name FixedColumns#draw
* @event
* @param {event} e jQuery event object
* @param {object} o Event parameters from FixedColumns
* @param {object} o.leftClone Instance's object dom.clone.left for easy reference. This object contains references to the left fixed clumn column's nodes
* @param {object} o.rightClone Instance's object dom.clone.right for easy reference. This object contains references to the right fixed clumn column's nodes
*/
})(jQuery, window, document);