pull/290/head
thomasbuckle-uk 8 years ago
commit 865d1f627c

@ -2,5 +2,10 @@
table.dataTable span.highlight { table.dataTable span.highlight {
background-color: #FFFF88; background-color: #FFFF88;
border-radius: 0.28571429rem;
} }
table.dataTable span.column_highlight {
background-color: #ffcc99;
border-radius: 0.28571429rem;
}

@ -43,10 +43,16 @@ function highlight( body, table )
// Don't highlight the "not found" row, so we get the rows using the api // Don't highlight the "not found" row, so we get the rows using the api
if ( table.rows( { filter: 'applied' } ).data().length ) { 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+/) ); body.highlight( $.trim( table.search() ).split(/\s+/) );
} }
} }
// Listen for DataTables initialisations // Listen for DataTables initialisations
$(document).on( 'init.dt.dth', function (e, settings, json) { $(document).on( 'init.dt.dth', function (e, settings, json) {
if ( e.namespace !== 'dt' ) { if ( e.namespace !== 'dt' ) {

@ -0,0 +1,29 @@
/**
* Telugu translation (te, te-IN)
* @name Telugu
* @anchor Telugu
* @author <a href="https://in.linkedin.com/in/srinivas-rathikrindi-0405973a">Srinivas Rathikrindi</a>
**/
{
"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": ": నిలువరుసను అవరోహణ క్రమం అమర్చండి"
}
}
Loading…
Cancel
Save