cascade view in scheduler joomla

Hi,

As I’ve seen there is in scheduler v3 a cascade view. (samples/02_customization/24_cascade_event_display.html)

We’re using the scheduler in joomla 1.5 - is there any way to get the “cascade mode” running?

thanks,
thomas

Hi,
joomla plugin v2.3.1 doesn’t support such feature, but v3.0 coming soon it will have ability to implement it. To do it you have to add the follow code into components/com_scheduler/scheduler_include.html:

<script>
	scheduler.config.cascade_event_display = true; // enable rendering, default value = false
	scheduler.config.cascade_event_count = 4; // how many events events will be displayed in cascade style (max), default value = 4
	scheduler.config.cascade_event_margin = 30; // margin between events, default value = 30
</script>

By the way, v3.0 is already available:
dhtmlx.com/blog/?p=1571