derek | idea company wrote:
> Thanks David.  I was just actually thinking thumbnail view is the way 
> to go and just style it differently.
>
>
> ...snip...
>>> Another possibly CSS related question I've got is about extending the
>>> label width in timeline.  I'm trying to get the
>>> ex:configuration="timelineConfig" to alter the timeline just enough to
>>> add "theme.event.label.width = 400; // px" as I've got lengthy labels. 
>>> I'm not sure what I'm doing wrong.
>>>   
>>>     
>> I think your script has a syntax error in it: ex-tl is not a valid 
>> variable name. You can't have - inside a variable name. Watch out for 
>> these things in the error console!
>>   
> Gotcha.  So I've gone through the Firebug and I'm no longer getting 
> any errors, although it won't let me add more than the one band 
> (anymore and it says I'm missing the ] for the var bandInfos.  It's 
> not loading anything, most likely because there is nothing in the 
> eventSource.  Is there a way to have exhibit feed the event source to 
> timeline or if I'm customizing timeline do I have to specify an event 
> source?
    ...
    bandInfos[1].syncWith = 0;
    bandInfos[1].highlight = true;
    bandInfos[2].syncWith = 0;
    bandInfos[2].highlight = true;
    ...

Seems like you need this line right here
var tl = Timeline.create(document.getElementById("tl"), bandInfos, 
Timeline.HORIZONTAL);

    return tl;


David

_______________________________________________
General mailing list
[email protected]
http://simile.mit.edu/mailman/listinfo/general

Reply via email to