Hi Peter,
I have a Datatable with no height predefined. So the datatable adjust his height in fonction of his contents.
What I try to do is to know if the datatable has a small height if the text in it is short or if the height has a large value if the text is very long.
If my datatable is named “jqxdatatable”, i’ve seen in the code that the datas are in a table with id tablejqxdatatable and the header in a div columntablejqxdatatable.
I can read and use the heights of this table and this div, but it is not “clean” (if on day you change the names of these elements).
So for the moment, I have a window in a docking page and i do
ready: function() {
$('#mywindow').height($("#tablejqxdatatable").height() + $("#columnjqxdatatable").height()+40);
},