I'm trying to change tr height of my jquery datatable, I'm looking for a property to set in the .DataTable
, but unfortunately I doesn't find nothing.
So I though to set the height of tr like this:
$('#datatable')
.css('min-height', '650px')
.css('tr height', '20px')
.DataTable
unfortunately the tr height isn't changed. What am I doing wrong?