New Features of ZK Calendar 2.1.0"

From Documentation
Line 1: Line 1:
 
= ZK Calendar now supports the beginTime and endTime attributes =
 
= ZK Calendar now supports the beginTime and endTime attributes =
  
By default, ZK Calendar's scheduling grid is labeled from 00:00 to 00:00 (the next day). As the figure shown below, the "Tokyo" field starts from 0:00 by default.
+
By default, ZK Calendar's scheduling grid is labeled from 00:00 to 23:00. As the figure shown below, the "Tokyo" field starts from 0:00 by default.
 
    
 
    
 
[[Image:ZKCalendar_Release2.1.0_time.png]]
 
[[Image:ZKCalendar_Release2.1.0_time.png]]

Revision as of 06:58, 24 November 2010

ZK Calendar now supports the beginTime and endTime attributes

By default, ZK Calendar's scheduling grid is labeled from 00:00 to 23:00. As the figure shown below, the "Tokyo" field starts from 0:00 by default.

ZKCalendar Release2.1.0 time.png

In ZK Calendar 2.1.0, by setting beginTime( 0-23 ) and endTime ( 1-24 ), you can specify the time range to be shown on the scheduling grid.

<calendars id="calendars"  beginTime="8" endTime="16"
		timeZone="Tokyo=GMT+9,Stockholm=GMT+1" model="${cm}"
		mold="default" firstDayOfWeek="Sunday">

ZKCalendar Release2.1.0 time2.png

ZK Calendar now supports the timeslots attribute

By default ZK Calendar only allowed book the event with 30 minute increase step, With ZK Calendar 2.1.0 by setting timeslots (2, 4, 6) you can book the event with 30, 15 or 10 minute increase step.

<calendars id="calendars"  timeslots="4"
		timeZone="Tokyo=GMT+9,Stockholm=GMT+1" model="${cm}"
		mold="default" firstDayOfWeek="Sunday">

ZKCalendar Release2.1.0 timeslots .png