Anyone know how to create waterfall layout like pinterest?

Comments

  1. Not sure if it is what you need, but a TGridPanelLayout may be the best you can get from the standard controls. The ControlCollection items have a ColumnSpan and RowSpan property, which let you have different sized controls nested together.

    ReplyDelete
  2. In native Delphi code I would use a virtual tree or virtual grid like Delphi Gems VirtualTreeView, or my fork of the ExGridView originally by Roman Mochalov. This will allow you to load content as required, fetching the actual items and even perhaps cleaning up when items scroll back off the screen.

    ReplyDelete
  3. THtPanel (HTML Component Library) + set of div-s with float: left

    ReplyDelete

Post a Comment