Forums / Developer / Problem with timeline in ezFlow
Atle Pedersen
Thursday 22 May 2008 3:37:30 am
Hello everybody,
I'm trying to get acquainted with the functionality of eZ Flow, but I have a problem getting the timeline to work.
When viewing a frontpage with delayed publications and moving the cursor to a point on the timeline when the publication should appear, it just says "Loading, please wait..." in the top right, but nothing happens. (Moving it to a point in time with no delayed publication works like it should.)
Also firebug reports the following error: YAHOO.util.Dom.get(blockID) has no properties[Break on this error] YAHOO.util.Dom.get( blockID ).innerHTML = xhtml;
I don't see this issue either discussed or reported as a bug, so I guess there is something wrong with my installation.
Does anyone how an idea about what the reason for this error might be?
Thanks
Łukasz Serwatka
Friday 23 May 2008 12:25:58 am
Hi Atle,
If you are able to reproduce it in repeatable steps then it is a bug. Could you report this problem in the issue tracker?
Personal website -> http://serwatka.net Blog (about eZ Publish) -> http://serwatka.net/blog
Romain Petit
Wednesday 23 June 2010 1:44:03 am
Hello, hope this helps :
I had the same error, it happens when one of the block templates contains a javascript error, and your script stops when the timeline.js tries to "eval" the downloaded code.
Around line 320 of timeline.js :
Replace :
return eval( script );
by
try{ eval( script ); } catch(e) { alert('The error was in the block !'); }