Fixed Header appears in-front of Editor pop-ups

Fixed Header appears in-front of Editor pop-ups

festivemongoosefestivemongoose Posts: 2Questions: 1Answers: 0

Please see following example:

http://devdatatables.no-ip.ca:18080/active-jobs.php

when the editor is activated, it appears behind the fixed header. Also the header is a bit misaligned (but it seesm to correct itself when you select new columns to display with the colvis plugin)

Answers

  • allanallan Posts: 61,439Questions: 1Answers: 10,053 Site admin

    It looks like the default z-index for FixedHeader is way to high for Editor, so the FixedHeader appears on top.

    What you can do is initialise FixedHeader with the zTop and zBottom options set to 5.

        new $.fn.dataTable.FixedHeader( table, {
            bottom: true,
            zTop: 5,
            zBottom: 5
        } );
    

    Allan

  • festivemongoosefestivemongoose Posts: 2Questions: 1Answers: 0

    Thank you Allan, you are very knowledgeable and extremely prompt to respond to these forums!

This discussion has been closed.