Skip to content

Header height and hidden TR #86

Closed
Closed
@eric-void

Description

@eric-void

In function setHeaderHeight you do this code:

        $header.find("tr").each(function(){
          headerHeight += $(this).outerHeight(true);
        });

This code consider hidden tr as well. This should be better:

        $header.find("tr:visible").each(function(){
          headerHeight += $(this).outerHeight(true);
        });

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions