jquery isotope plugin container height will not grow with isotope-item (same with masonry)

14,364

Solution 1

Found the answer here:

https://github.com/desandro/isotope/issues/275

You have to call relayout like this:

$("#your_container").isotope( 'reLayout' )

Solution 2

In Isotope V2 the syntax is

$("#your_container").isotope('layout')

Solution 3

In Isotope PACKAGED v2.2.2, you can also 're-arrange / re-layout' your container:

    $(window).scroll(function(){
        $container.isotope( 'layout' );
    }
Share:
14,364

Related videos on Youtube

botbot
Author by

botbot

Hi. Let's make stuff together.

Updated on June 04, 2022

Comments

  • botbot
    botbot almost 2 years

    I have an isotope-item that will grow in height when somebody comments inside of it. When it grows, how do I tell the main isotope container to grow with it? Right now what is happening is, as the isotope-item grows, the isotope container maintains it's initial height that was set when calling $(".home_main").isotope(); So when I leave comments inside the isotope-item, the item grows, then is cut off by the main container. Thanks.

    I have seen that you can set resizesContainer: true but this hasn't helped me. Thanks.

    Not sure if it makes any difference but I have also tried this with the Masonry jquery plugin as well (seems pretty similar) and had the same problem.