Hi,
Any body knows howto do a Thumbnail or Vignette view with exhibit,
Thanks, regards,
Eric

Comments

diodata’s picture

Check out some of the examples at http://projects.csail.mit.edu/wibit/wiki/index.php?title=SimileResources (Particularly the CSAIL Principle Investigators one.) Basically, the code looks something like this:


<div ex:role="exhibit-view"
   ex:viewClass="Exhibit.Thumbnail"
   ex:label="Preview"
   ex:showAll="false"
   ex:abbreviatedCount="10">
        
  <div ex:role="lens" class="person-thumbnail" style="display: none;">
    <div ex:content=".field_preview_fid" class="thumbnail"></div>
    <div class="thumbnailtitle"><span ex:content=".title"></span></div>
  </div>

</div>

For the above, the lens is defined inside the view div. There are two CCK fields being pulled in from a view, .title (the standard title of the node) and .field_preview_fid (imagefield with imagecache preset.)

Hope this helps.