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
21 lines
552 B
JavaScript
Executable File
21 lines
552 B
JavaScript
Executable File
/**
|
|
* This plug-in will read the text from the header cell of a column, returning
|
|
* that value.
|
|
*
|
|
* @name column().title()
|
|
* @summary Get the title of a column
|
|
* @author Alejandro Navarro
|
|
* @requires DataTables 1.10+
|
|
*
|
|
* @returns {String} Column title
|
|
*
|
|
* @example
|
|
* // Read the title text of column index 3
|
|
* var table = $('#example').DataTable();
|
|
* table.column( 3 ).title();
|
|
*/
|
|
|
|
$.fn.dataTable.Api.register( 'column().title()', function () {
|
|
var colheader = this.header();
|
|
return $(colheader).text().trim();
|
|
} ); |