Re: [Simile-Widgets] timeline: Dynamically Changing events displayed

2011-05-16 Thread Michael Nosal
What do you mean by dynamically change? If you mean simply loading different datasets at initialization time, then it is a simple call to loadXML (or loadJSON): tl.loadXML(examples/jfk/jfk.xml, function(xml, url) { eventSource.loadXML(xml, url); }); You just specify the path to the desired data

[Simile-Widgets] I can scroll sideways, and zoom, in Timeline. Possible in Timeplot?

2011-05-16 Thread lmorris99
I've followed the Timeplot Getting-started wiki (http://www.simile-widgets.org/timeplot/docs/), and got my Timeline events and my Timeplot data displayed together. But I need to let my users zoom in, from (say) a week's worth of readings to an hour's worth. Timeline lets you zomm with the

[Simile-Widgets] Re: Timeline: how to put related events in the same line?

2011-05-16 Thread mleden
Hi Luis, One way to simulate what you want, I think, would be to have each Meeting Room represented as a separate Band within the Timeline. This takes a little extra work but gives you the additional flexibility of being able to decorate each band uniquely. The entire Timeline can still be made

[Simile-Widgets] How to debug exhibit?

2011-05-16 Thread Oliver M. Batista
I already try with Firebug on Firefox but could not set breakpoints. tnx -- Oliver M. Batista -- You received this message because you are subscribed to the Google Groups SIMILE Widgets group. To post to this group, send email to simile-widgets@googlegroups.com. To unsubscribe from this

Re: [Simile-Widgets] How to debug exhibit?

2011-05-16 Thread David Karger
you'll want to add ?bundle=false as a parameter to the exhibit api call (http://.../exhibit/api...?bundle=false so that you get the individual files instead of the minified bundle. after that you should be able to set breakpoints; i do it all the time. On 5/16/2011 8:27 PM, Oliver M. Batista