Could not find a solution how to override Laravel DataTables behaviour. I have a piece of code in front end:
var columnFilter = function(columnSelector, value) {
$('.clear-filter').removeClass('active');
clearFilter();
table.column(columnSelector + ':name').search(value).draw();
console.log(value);
}
The problem here is that it gives me a query with 'LIKE' :
(where 'column' LIKE '%value%'.)
Is there a way to override this and use EQUALS instead of like?
Thank you.