mirror of
https://github.com/dawidolko/Website-Templates.git
synced 2026-03-23 02:52:18 +00:00
Website templates
This commit is contained in:
21
startbootstrap-sb-admin-2-1.0.5/bower_components/datatables-plugins/api/column().title().js
vendored
Normal file
21
startbootstrap-sb-admin-2-1.0.5/bower_components/datatables-plugins/api/column().title().js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* 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();
|
||||
} );
|
||||
Reference in New Issue
Block a user