Wha is the best way to hide empty
or null comumns
from Yajra Datatables
:
var table = $('.data-table').DataTable({
processing: true,
serverSide: true,
ajax: "{{ route('any.route') }}",
columns: [
// How to Hide any of these columns if its data is empty or null?
// for exampe I want to hide mname column ?
// visible: what condition for example !!!!
{data: 'fname', name: 'fname'},
{data: 'mname', name: 'mname'},
{data: 'lname', name: 'lname'},
....
]
});
How do I hide th
in table
whenever any data is empty or null
. for instance, using visible:
, what condition should I use to test if the data:
is empty
or null