mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 19:21:33 +00:00
The official image from streamline does not currently work for the arm64 platform. As a temporary measure, the source code and docker build scripts have been lifted from the official images and are used to build locally. Some additional modifications are made to reduce overall image size, these are documented in docker/README.md
34 lines
1.2 KiB
JavaScript
Executable File
34 lines
1.2 KiB
JavaScript
Executable File
/**
|
|
* 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).
|
|
*
|
|
* DataTables 1.10+ has this ability built-in through the
|
|
* `dt-api column.index()` method. As such this method is marked deprecated, but
|
|
* is available for use with legacy version of DataTables.
|
|
*
|
|
* @name fnVisibleToColumnIndex
|
|
* @summary Convert a column visible index to a data index.
|
|
* @author [Allan Jardine](http://sprymedia.co.uk)
|
|
* @deprecated
|
|
*
|
|
* @param {integer} iMatch Column data index to convert to data index
|
|
* @returns {integer} Visible column index
|
|
*
|
|
* @example
|
|
* var table = $('#example').dataTable( {
|
|
* aoColumnDefs: [
|
|
* { bVisible: false, aTargets: [1] }
|
|
* ]
|
|
* } );
|
|
*
|
|
* // This will show 2
|
|
* alert( 'Visible Column 1 data index: '+table.fnVisibleToColumnIndex(1) );
|
|
*/
|
|
|
|
jQuery.fn.dataTableExt.oApi.fnVisibleToColumnIndex = function ( oSettings, iMatch )
|
|
{
|
|
return oSettings.oApi._fnVisibleToColumnIndex( oSettings, iMatch );
|
|
};
|