From 2ab48fdbc3376d4ad7d63a4ebeabfb7e011c9719 Mon Sep 17 00:00:00 2001 From: Allan Jardine Date: Thu, 2 Oct 2014 08:32:28 +0100 Subject: [PATCH] New API method: `column().title()` from Alejandro Navarro --- api/column().title().js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 api/column().title().js diff --git a/api/column().title().js b/api/column().title().js new file mode 100644 index 0000000..56394ea --- /dev/null +++ b/api/column().title().js @@ -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(); +} ); \ No newline at end of file