That would probably work if you have scroll collapse enabled (bScrollCollapse), since there is a check for that. However, if you don't want that - then what you can do is just change the height of the scrolling element "manually" (using DOM methods).
Replies
Allan
[code]
$(".dataTables_scrollBody").height( ... );
[/code]
works just fine :)