The First Day of the Week"

From Documentation
m
(11 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
{{ZKDevelopersReferencePageHeader}}
 
{{ZKDevelopersReferencePageHeader}}
  
By default, the first day of the week depends on the locale (e.g., Sunday in US, Monday in France). In fact, it is the value returned by the <tt>getFirstDayOfWeek</tt> method of the <tt>java.util.Calendar</tt> class.
+
=Overview=
 +
By default, the first day of the week depends on the locale (e.g., Sunday in US, Monday in France). More precisely, it is the value returned by the <tt>getFirstDayOfWeek</tt> method of the <tt>java.util.Calendar</tt> class.
  
However, you can configure it different as follows, and it will affect how [http://books.zkoss.org/wiki/ZK_Component_Reference/Input/Datebox datebox] and [http://books.zkoss.org/wiki/ZK_Component_Reference/Input/Calendar calendar] components behave.
+
However, you can configure it different, and it will affect how [[ZK_Component_Reference/Input/Datebox|datebox]] and [[ZK_Component_Reference/Input/Calendar|calendar]] components behave.
  
=== The Session Attribute: <tt>org.zkoss.web.preferred.firstDayOfWeek</tt> ===
+
=The decision sequence of the first day of the week=
 +
The first day of the week is decided in the following sequence.
 +
 
 +
# It checks if an attribute called <code>org.zkoss.web.preferred.firstDayOfWeek</code> defined in the HTTP session (aka., <javadoc type="interface">org.zkoss.zk.ui.Session</javadoc>). If so, use it.
 +
# It checks if an attribute called <code>org.zkoss.web.preferred.firstDayOfWeek</code> defined in the Servlet context (aka., <javadoc type="interface">org.zkoss.zk.ui.Application</javadoc>). If so, use it.
 +
# It checks if a property called <code>org.zkoss.web.preferred.firstDayOfWeek</code> defined in the library property (i.e., <javadoc>org.zkoss.lang.Library</javadoc>). If so, use it.
 +
# If none of them is found, JVM's default will be used (<tt>java.util.Calendar</tt>).
 +
 
 +
==Application-level first-day-of-the-week==
  
 
  [since 5.0.3]
 
  [since 5.0.3]
  
By specify a value to the session attribute called <tt>org.zkoss.web.preferred.firstDayOfWeek</tt> (i.e., <javadoc method="PREFERRED_FIRST_DAY_OF_WEEK">org.zkoss.web.Attributes</javadoc>), you can control the first day of the week for the give session.
+
If you want to use the same first-day-of-the-week for all users of the same application, you can specify it in the library property.
The allowed value include Calendar.SUNDAY, Calendar.MONDAY and so on.
+
The allowed values include 1 (Sunday), 2 (Monday), .. and 7 (Saturday). For example, you could specify the following in <tt>WEB-INF/zk.xml</tt>:
  
<source lang="java">
+
<source lang="xml">
session.setAttribute(org.zkoss.web.Attributes.PREFERRED_FIRST_DAY_OF_WEEK, java.util.Calendar.SATURDAY);
+
<library-property>
  //then, the current session's first day of the week will be Saturday
+
    <name>org.zkoss.web.preferred.firstDayOfWeek</name>
 +
    <value>7</value><!-- Saturday -->
 +
</library-property>
 
</source>
 
</source>
  
=== The Application Attribute: <tt>org.zkoss.web.preferred.firstDayOfWeek</tt> ===
+
Alternatively, if you prefer to specify it in Java, you could invoke <javadoc method="setProperty(java.lang.String, java.lang.String)">org.zkoss.lang.Library</javadoc>. Furthermore, to avoid typo, you could use <javadoc method="setAttribute(java.lang.String, java.lang.Object)" type="interface">org.zkoss.zk.ui.WebApp</javadoc> and <javadoc method="PREFERRED_FIRST_DAY_OF_WEEK">org.zkoss.web.Attributes</javadoc> as follows.
  
[since 5.0.3]
+
<source lang="java">
 +
webApp.setAttribute(org.zkoss.web.Attributes.PREFERRED_FIRST_DAY_OF_WEEK, java.util.Calendar.SATURDAY);
 +
</source>
  
By specify a value to the <javadoc type="interface">org.zkoss.zk.ui.WebApp</javadoc> attribute called <tt>org.zkoss.web.preferred.firstDayOfWeek</tt> (i.e., <javadoc method="PREFERRED_FIRST_DAY_OF_WEEK">org.zkoss.web.Attributes</javadoc>), you can control the first day of the week for the whole application.
+
As shown above, the allowed values of <javadoc method="setAttribute(java.lang.String, java.lang.Object)" type="interface">org.zkoss.zk.ui.WebApp</javadoc> include Calendar.SUNDAY, Calendar.MONDAY and so on.
The allowed value include Calendar.SUNDAY, Calendar.MONDAY and so on.
 
  
The session attribute has the higher priority than this.
+
== Per-user first-day-of-week ==
  
=== The Library Property: <tt>org.zkoss.web.preferred.firstDayOfWeek</tt> ===
+
[since 5.0.3]
  
[since 5.0.3]
+
By specify a value to the session attribute called <tt>org.zkoss.web.preferred.firstDayOfWeek</tt> (i.e., <javadoc method="PREFERRED_FIRST_DAY_OF_WEEK">org.zkoss.web.Attributes</javadoc>), you can control the first day of the week for the given session.
 +
The allowed values include Calendar.SUNDAY, Calendar.MONDAY and so on.
  
By specify a value to the library property called <tt>org.zkoss.web.preferred.firstDayOfWeek</tt> (i.e., <javadoc method="PREFERRED_FIRST_DAY_OF_WEEK">org.zkoss.web.Attributes</javadoc>), you can control the first day of the week for the whole application.
+
<source lang="java">
The allowed values include 1 (Sunday), 2 (Monday), .. and 7 (Saturday).
+
session.setAttribute(org.zkoss.web.Attributes.PREFERRED_FIRST_DAY_OF_WEEK, java.util.Calendar.SATURDAY);
 +
  //then, the current session's first day of the week will be Saturday
 +
</source>
  
The session and application attributes have higher priority than this.
+
For example, you can do this when a user logins.
  
<source lang="xml">
+
<source lang="java" >
<library-property>
+
void login(String username, String password) {
<name>org.zkoss.web.preferred.firstDayOfWeek</name>
+
    //check password
<value>7</value> <!-- 7: Saturday -->
+
    ...
</library-property>
+
    int preferredFDOW = ...; //decide the user's preference
 +
    session.setAttribute(Attributes.PREFERRED_FIRST_DAY_OF_WEEK, preferredFDOW);
 +
...
 
</source>
 
</source>
  
 
=Version History=
 
=Version History=
 
+
{{LastUpdated}}
 
{| border='1px' | width="100%"
 
{| border='1px' | width="100%"
 
! Version !! Date !! Content
 
! Version !! Date !! Content
 
|-
 
|-
| &nbsp;
+
| 5.0.3
| &nbsp;
+
| June 201
| &nbsp;
+
| The first day of week is configurable
 
|}
 
|}
  
 
{{ZKDevelopersReferencePageFooter}}
 
{{ZKDevelopersReferencePageFooter}}

Revision as of 01:15, 26 July 2011


The First Day of the Week


Overview

By default, the first day of the week depends on the locale (e.g., Sunday in US, Monday in France). More precisely, it is the value returned by the getFirstDayOfWeek method of the java.util.Calendar class.

However, you can configure it different, and it will affect how datebox and calendar components behave.

The decision sequence of the first day of the week

The first day of the week is decided in the following sequence.

  1. It checks if an attribute called org.zkoss.web.preferred.firstDayOfWeek defined in the HTTP session (aka., Session). If so, use it.
  2. It checks if an attribute called org.zkoss.web.preferred.firstDayOfWeek defined in the Servlet context (aka., Application). If so, use it.
  3. It checks if a property called org.zkoss.web.preferred.firstDayOfWeek defined in the library property (i.e., Library). If so, use it.
  4. If none of them is found, JVM's default will be used (java.util.Calendar).

Application-level first-day-of-the-week

[since 5.0.3]

If you want to use the same first-day-of-the-week for all users of the same application, you can specify it in the library property. The allowed values include 1 (Sunday), 2 (Monday), .. and 7 (Saturday). For example, you could specify the following in WEB-INF/zk.xml:

<library-property>
    <name>org.zkoss.web.preferred.firstDayOfWeek</name>
    <value>7</value><!-- Saturday -->
</library-property>

Alternatively, if you prefer to specify it in Java, you could invoke Library.setProperty(String, String). Furthermore, to avoid typo, you could use WebApp.setAttribute(String, Object) and Attributes.PREFERRED_FIRST_DAY_OF_WEEK as follows.

webApp.setAttribute(org.zkoss.web.Attributes.PREFERRED_FIRST_DAY_OF_WEEK, java.util.Calendar.SATURDAY);

As shown above, the allowed values of WebApp.setAttribute(String, Object) include Calendar.SUNDAY, Calendar.MONDAY and so on.

Per-user first-day-of-week

[since 5.0.3]

By specify a value to the session attribute called org.zkoss.web.preferred.firstDayOfWeek (i.e., Attributes.PREFERRED_FIRST_DAY_OF_WEEK), you can control the first day of the week for the given session. The allowed values include Calendar.SUNDAY, Calendar.MONDAY and so on.

session.setAttribute(org.zkoss.web.Attributes.PREFERRED_FIRST_DAY_OF_WEEK, java.util.Calendar.SATURDAY);
  //then, the current session's first day of the week will be Saturday

For example, you can do this when a user logins.

 void login(String username, String password) {
     //check password
     ...
     int preferredFDOW = ...; //decide the user's preference
     session.setAttribute(Attributes.PREFERRED_FIRST_DAY_OF_WEEK, preferredFDOW);
...

Version History

Last Update : 2011/07/26


Version Date Content
5.0.3 June 201 The first day of week is configurable



Last Update : 2011/07/26

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.