You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
587 B
JavaScript
18 lines
587 B
JavaScript
13 years ago
|
/**
|
||
|
* When DataTables removes columns from the display (bVisible or
|
||
|
* fnSetColumnVis) it removes these elements from the DOM, effecting the
|
||
|
* index value for the column positions. This function converts the data
|
||
|
* column index (i.e. all columns regardless of visibility) into a visible
|
||
|
* column index.
|
||
|
* @name fnColumnIndexToVisible
|
||
|
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
|
||
|
*
|
||
|
* @example
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
$.fn.dataTableExt.oApi.fnColumnIndexToVisible = function ( oSettings, iMatch )
|
||
|
{
|
||
|
return oSettings.oApi._fnColumnIndexToVisible( oSettings, iMatch );
|
||
|
};
|