From 097050f042e47c5c10ae6281a3c5749960bdf203 Mon Sep 17 00:00:00 2001 From: mdeniz Date: Fri, 29 Jul 2016 11:45:51 +0200 Subject: [PATCH 1/2] Add column search/filtering highlight --- features/searchHighlight/dataTables.searchHighlight.css | 5 +++++ features/searchHighlight/dataTables.searchHighlight.js | 8 +++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/features/searchHighlight/dataTables.searchHighlight.css b/features/searchHighlight/dataTables.searchHighlight.css index 10a03e6..a1e43d4 100644 --- a/features/searchHighlight/dataTables.searchHighlight.css +++ b/features/searchHighlight/dataTables.searchHighlight.css @@ -2,5 +2,10 @@ table.dataTable span.highlight { background-color: #FFFF88; + border-radius: 0.28571429rem; } +table.dataTable span.column_highlight { + background-color: #ffcc99; + border-radius: 0.28571429rem; +} diff --git a/features/searchHighlight/dataTables.searchHighlight.js b/features/searchHighlight/dataTables.searchHighlight.js index 538f63f..d814f23 100644 --- a/features/searchHighlight/dataTables.searchHighlight.js +++ b/features/searchHighlight/dataTables.searchHighlight.js @@ -10,7 +10,7 @@ * @author SpryMedia Ltd (www.sprymedia.co.uk) * @contact www.sprymedia.co.uk/contact * @copyright Copyright 2014 SpryMedia Ltd. - * + * * License MIT - http://datatables.net/license/mit * * This feature plug-in for DataTables will highlight search terms in the @@ -43,10 +43,16 @@ function highlight( body, table ) // Don't highlight the "not found" row, so we get the rows using the api if ( table.rows( { filter: 'applied' } ).data().length ) { + table.columns().every( function () { + var column = this; + column.nodes().flatten().to$().unhighlight({ className: 'column_highlight' }); + column.nodes().flatten().to$().highlight( $.trim( column.search() ).split(/\s+/), { className: 'column_highlight' } ); + } ); body.highlight( $.trim( table.search() ).split(/\s+/) ); } } + // Listen for DataTables initialisations $(document).on( 'init.dt.dth', function (e, settings, json) { if ( e.namespace !== 'dt' ) { From e44da31b85e0e42e1224150dfa7108fbb32d4e2e Mon Sep 17 00:00:00 2001 From: vasRK Date: Sat, 30 Jul 2016 21:29:16 +0530 Subject: [PATCH 2/2] added localization for telugu language --- i18n/telugu.lang | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 i18n/telugu.lang diff --git a/i18n/telugu.lang b/i18n/telugu.lang new file mode 100644 index 0000000..2120559 --- /dev/null +++ b/i18n/telugu.lang @@ -0,0 +1,29 @@ +/** + * Telugu translation (te, te-IN) + * @name Telugu + * @anchor Telugu + * @author Srinivas Rathikrindi + **/ +{ + "sEmptyTable": "పట్టికలో డేటా లేదు.", + "sInfo": "మొత్తం _TOTAL_ ఎంట్రీలులో _START_ నుండి _END_ వరకు చూపిస్తున్నాం", + "sInfoEmpty": "చూపిస్తున్నాం 0 నుండి 0 వరకు 0 ఎంట్రీలు లో", + "sInfoFiltered": "( _MAX_ ఎంట్రీలులో నుండి వడపోయాబడినవి)", + "sInfoPostFix": "", + "sInfoThousands": ",", + "sLengthMenu": " _MENU_ ఎంట్రీలు చూపించు", + "sLoadingRecords": "లోడ్ అవుతుంది ...", + "sProcessing": "ప్రాసెస్ చేయబడుతుంది...", + "sSearch": "వెతుకు:", + "sZeroRecords": "మ్యాచింగ్ రికార్డులు లేవు", + "oPaginate": { + "sFirst": "మొదటి", + "sLast": "చివరి", + "sNext": "తర్వాత", + "sPrevious": "మునుపటి" + }, + "oAria": { + "sSortAscending": ": నిలువరుసను ఆరోహణ క్రమం అమర్చండి", + "sSortDescending": ": నిలువరుసను అవరోహణ క్రమం అమర్చండి" + } +}