GridView Control - Thumbnails View

  • Thread starter Thread starter Samuel Shulman
  • Start date Start date
S

Samuel Shulman

Hi

Is it possible to present item in the GridView in Thumbnails Mode so more
then one item can fit in one row

Thank you,
Samuel
 
hi samuel,
the gridview is designed for one row per item.
you might find the DataList useful because you can define how many items you
want to fit on one line, and whether they should repeat horizontally or
vertically. these properties are called RepeatColumns and RepeatDirection,
respectively). the datalist will render a table with rows and columns by
default (see RepeatLayout).

hope this helps
tim
 
Back
Top