0

I'm just wondering if there is an implementation/adapter of JavaScript component Isotope http://isotope.metafizzy.co/sorting.html for Vaadin 7 framework ?

I need Isotope or Quicksand or some similar component with a sorting animation effect. Please suggest.

alexanoid
  • 19,599
  • 35
  • 160
  • 321
  • What do you need? If u need sorting, use Collections.sort() on your components in the layout. If u need animations during sorting then the answer is no. You need to implement it yourself – kukis Oct 31 '15 at 08:50
  • @kukis I need Isotope or some similar component for Vaadin for animation effect during sorting – alexanoid May 15 '16 at 18:23

1 Answers1

1

Masonry is very similar to Isotope - a comparison is here.

Given this, there exists 2 Vaadin 'Masonry-style' components.

The alump component is more actively maintained and seems to have most of the interesting features of the Masonry library implemented. You can try it here: http://app.siika.fi/MasonryDemo/ and see if it suits your needs.

Community
  • 1
  • 1
Dylan Watson
  • 2,103
  • 1
  • 17
  • 38
  • I have reviewed Masonry and looks like it lacks dynamic sorting of attached elements. I need Isotope or some similar component for Vaadin for animation effect during sorting. – alexanoid May 15 '16 at 18:23
  • Yeah I'm not aware of any other libaries. Alump's Masonry component does have a drag and drop facility (http://app.siika.fi/MasonryDemo/#!VaadinDnDTestsView) but the animation on it looks a bit dodgy.. I haven't played with it myself too much though. – Dylan Watson May 31 '16 at 07:52