cldarcy / simile-widgets

Automatically exported from code.google.com/p/simile-widgets
0 stars 0 forks source link

TIMELINE. Recent changes with original, detailed and overview painters #216

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
1.
Overview : true does not seem to work any more with the recent additions of
original-painter.js and related changes.. I had to switch to using
ShowEventText(or something like this) : false..

2.
I noticed with the recent changes, an event bubble of fixed height and
there is automatically a vertical scollbar in it if there is more content.
Is this new because it did not work this way in my local version. Actually
the scrollbar is what I wanted so... its great thanx but when I run the
code locally I do not get this scrollbar.. I only get this behaviour when I
point to the simile api directly.....

3.
I sometime get the event label not aligned with the event icon.. sometimes
it does above it sometimes below.. how do I avoid that so it is always
inline with the icon? I tried chaging label width but no luck there.. the
table is not that long at all and it should fit.

[Submitted by Gaurav on simile.mit.edu] 

David F. Huynh - 20/Oct/07 02:10 PM
1.
It seems to work fine in this example
http://simile.mit.edu/repository/timeline/trunk/src/webapp/examples/jfk/jfk.html
which uses the API from the repository.

2.
The trunk is not released to simile.mit.edu/timeline/api. The trunk is
actually version 2.0 still being developed. But the trunk is used in
Exhibit 2.0 beta. In the trunk, the bubble automatically tries to find the
right height for whatever content it should display. If you want a
scrollbar, then you should restrict your content, e.g.,

  <div class="fixed-height">...</div>

where

  div.fixed-height {
    height: 100px;
    overflow: scroll
  }

3.
Any URL for me to look at? 

Original issue reported on code.google.com by GabrielR...@googlemail.com on 8 Apr 2009 at 7:25