s-yadav / angulargrid

Pinterest like responsive masonry grid system for angular
MIT License
277 stars 105 forks source link

feature request : Highlight an item in the grid #113

Open abhith opened 7 years ago

abhith commented 7 years ago

If we set highlight for an item, that item will occupy two columns width and proportional height, so that the item can be easily noticed in the grid.

Can we achieve the above mentioned in the current grid in somehow?

s-yadav commented 7 years ago

This is not possible with angulargrid as it expect the columns to be of same width and height can be different. You may like to try https://github.com/ManifestWebDesign/angular-gridster for that use case. If you just want to highlight on some action and don't care about repositioning other items you can easily do it with css by transforming your item based on some class. But this approach may hide other items around it.

abhith commented 7 years ago

We achieved the same using ShuffleJS. You can close this issue if you wanted.