Height of the table linked to the container div

Height of the table linked to the container div

robertino_salemirobertino_salemi Posts: 13Questions: 0Answers: 0
edited February 2014 in General
Hi,
I'm using the property ""sScrollY".
I want to associate the value of this property in dynamic mode, so I calculate the height of div that contains the table:
[code]
var customHeightTable =
$(window).height() -
(
$("header").height() +
$("#pageTitle").height() +
$(".report-filter").height()
);
[/code]

It works, but the table is highest because each row contains (in my opinion) a style padding.

How can I resolve it?

Thanks.
This discussion has been closed.