Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

FixedHeader on example page does not line up with columns #372

@bolemeus

Description

@bolemeus

It works for me because my columns all have a fixed width, but on the example page the header does not line up the columns.

Also, when you're not using Angular ui-router, you can use this to clear the header on a route change event...

    $scope.$on("$routeChangeStart", function(event, next, current) {
        var fixedHeaderEle = document.getElementsByClassName('fixedHeader');
        angular.element(fixedHeaderEle).remove();
        var fixedFooterEle = document.getElementsByClassName('fixedFooter');
        angular.element(fixedFooterEle).remove();
    });

Maybe you can help some people by including it on the example page.

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions