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
617 B
JavaScript
18 lines
617 B
JavaScript
/**
|
|
* 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 visible column
|
|
* index into a data column index (i.e. all columns regardless of visibility).
|
|
* @name fnVisibleToColumnIndex
|
|
* @anchor fnVisibleToColumnIndex
|
|
* @author <a href="http://sprymedia.co.uk">Allan Jardine</a>
|
|
*
|
|
* @example
|
|
*
|
|
*/
|
|
|
|
$.fn.dataTableExt.oApi.fnVisibleToColumnIndex = function ( oSettings, iMatch )
|
|
{
|
|
return oSettings.oApi._fnVisibleToColumnIndex( oSettings, iMatch );
|
|
};
|