New Features of ZK Calendar 2.1.0"

From Documentation
Line 1: Line 1:
= ZK Calendar now supports the beginTime and endTime attribute =
+
= ZK Calendar now supports the beginTime and endTime attributes =
By default ZK Calendar schedule area will be start form 00:00 and end with 00:00,
+
 
 +
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.
 
    
 
    
 
[[Image:ZKCalendar_Release2.1.0_time.png]]
 
[[Image:ZKCalendar_Release2.1.0_time.png]]
  
With ZK Calendar 2.1.0 by setting beginTime( 0-23 ) and endTime ( 1-24 ) you can only show the events in the time range.  
+
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.  
 
<source lang="javascript">
 
<source lang="javascript">
 
<calendars id="calendars"  beginTime="8" endTime="16"
 
<calendars id="calendars"  beginTime="8" endTime="16"
Line 10: Line 11:
 
mold="default" firstDayOfWeek="Sunday">
 
mold="default" firstDayOfWeek="Sunday">
 
</source>
 
</source>
 +
 
[[Image:ZKCalendar_Release2.1.0_time2.png]]
 
[[Image:ZKCalendar_Release2.1.0_time2.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 00:00 (the next day). 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