Search
-
Errors trying to Create an Index Column with two database columns (Mysql/Flask)
by kthorngren ·There looks to be a few issues: -
Conditionally add a row in DataTables (jQuery library)
by ahardiman ·if (data.assigned._id.$oid === data.originator._id.$oid) { $('#myActions').DataTable().rows.add([myActionsArray]).draw(); $('#myActions').DataTable().columns.adjust().draw(); $('#setActions').DataTabl -
Custom form and AJAX search API
by FedericoV ·table.on( 'draw', function() { var body = $( table.table().body()); body.unhighlight(); body.highlight([$("#searchRegistration").val()], [$("#searchModel").val()]); -
Custom form and AJAX search API
by FedericoV ·table.on( 'draw', function() { var body = $( table.table().body()); body.unhighlight(); body.highlight([$("#searchRegistration").val()], [$("#searchModel").v -
Custom form and AJAX search API
by FedericoV ·table.on( 'draw', function() { var body = $( table.table().body()); body.unhighlight(); body.highlight([$("#searchRegistration").val()], [$("#searchModel").val()]); -
Custom form and AJAX search API
by kthorngren ·table.on( 'draw', function() { var body = $( table.table().body()); body.unhighlight(); body.highlight($("#searchRegistration").val()); -
Custom form and AJAX search API
by kthorngren ·table.on( 'draw', function () { var body = $( table.table().body() ); body.unhighlight(); body.highlight($("#searchRegistration").val()); body.highlight($("#searc -
Server side data table not displaying record
by colin ·This section of the FAQ should help, it discusses various techniques to improve performance, -
Custom form and AJAX search API
by FedericoV ·function spotlight() { table.on( 'draw', function () { var body = $( table.table().body() ); body.unhighlight(); body.highlight($("#searchRegistration").val()); bo -
Custom form and AJAX search API
by FedericoV ·table.on( 'draw', function () { var body = $( table.table().body() ); body.unhighlight(); body.highlight($("#searchRegistration").val()); body.highlight($(&q -
Custom form and AJAX search API
by kthorngren ·var registration = $('#searchRegistration').val(); var model = $('#searchModel').val(); d.registration = registration; -
Custom form and AJAX search API
by FedericoV ·$('#searchRegistration').keyup(function () { console.log('Redrawing table, searching for', $(this).val()); table.draw(); table.state.save(); if ($(this).val() == '') { //Check -
InitComplete - show/hide/remove tags
by Akashvino ·$(document).ready(function(){ $("#Srvlist").bind('change init', function(){ $('#Server').toggle($("#Srvlist option").is(':selected')); var rvalue = this.val -
data search in a column using OR for terms that have multiple words
by z3phir ·function filterGlobal() { $('#searchResults').DataTable().search( $('#global_filter').val(), false, true ).draw(); } function filterColumn(i) { $('#searchResults') -
Highlight custom search values
by kthorngren ·I'm guessing this is what you are using to search? -
Reset filters not wroking on dates filters
by chinovski ·{ var fieldSelector = '#search-filters'; if(tabName != ''){ fieldSelector = '#'+ tabName +'-tab'; } $(fieldSelector +' .datepicker').each(function() { $(this).data(' -
columns: [object Object], order: [object Object] and sorting: [object Object] when using server-side
by PNC ·{ var myTable = $('#serverside_table').DataTable( { "processing": true, "serverSide": true, "ajax": "/invoices/serverside_table", -
language setting in datatables
by Akashvino ·$(document).ready(function(){ $('#Slist').bind('change init', function(){ ('#Server').toggle($("#Slist option").is(':selected')); var rvalue = this.value; var surl = '/Serv/' -
SEARCH AND PAGINATION NOT WORKING WITH THIS CODE.
by saadchaudhary ·$(document).ready(function(){ $('#search-logs').DataTable({ 'processing': true, 'serverSide': true, 'paging': true, 'scrollY': false, -
standalone registration form
by montoyam ·$("#submit").on('click', function (e) { var data = $("#registerForm").serialize(); console.log(data); $.ajax({ url: 'api/Users',