Skip to main content

Selecting date range with YUI3 Calendar

This is a fully UI related article about YUI3 Calendar widget. Whereas official documentation page and provided examples (here and here) are good enough to start with, there are still many pitfalls when you're going to customize the widget. My use case required a date range selection feature with a nice calendar window open only when a user clicks on text input fields. Also the selected day should be highlighted in the calendar whenever a user clicks again on the filled text input field (a nice example with YUI2 Calendar widget). This is how one date input field looks like:

Add calendar container and date fields on the web page
First of all you need to add a container div for the calendar:
<div id="calendar-container"> </div>
You will provide this id to the Calendar constructor later either as a bounding box or a content box. The difference is in html markup generated by YUI3. I'll use a bounding box below in order to manipulate position of calendar window.

Also you will need input text fields on your page to be filled with dates:
<input id="startDate" type="text"/>
<input id="endDate" type="text"/>

Initialize YUI3
To get started with YUI3, you should perform two steps:
  1. Load the YUI javascript file on your web page.
  2. Create and configure a new YUI instance.
Please refer to this manual for code snippets. The only difference is that we'll use two modules: calendar and datatype-date:
YUI().use('calendar', 'datatype-date',  function(yui3) {
// Calendar code will be here
}

Initialize Calendar
Here we'll define some variables to be used in functions later and the calendar instance itself.
// Our calendar bounding div id
var boundingBoxId = "#calendar-container",
// This flag used to track mouse position
    isMouseOverCalendar = false,
// A text field element that stores the date chosen in calendar
    currentValueContainer = '',
    calendar = new yui3.Calendar({
        boundingBox: boundingBoxId,
        width: "300px"
    });

Register event handler functions
Here we'll define event handlers for several DOM events (focus, blur, mouseover, mouseout) and for a selectionChange event of our calendar:
// These are text fields' ids to store dates in
var dateFields = ["#startDate", "#endDate"];

// To show calendar when user clicks on text fields
yui3.on("focus", function(event) { showCalendar(event) }, dateFields);
// To hide calendar when text fields loose focus
yui3.on("blur", function() { hideCalendar() }, dateFields);

// Tracking mouse position
yui3.on("mouseover", function () {
    isMouseOverCalendar = true;
}, boundingBoxId);
yui3.on("mouseout", function () {
    isMouseOverCalendar = false;
}, boundingBoxId);

// On date selection change we update value of a text field and hide calendar window
calendar.on("selectionChange", function (event) {
    var newDate = event.newSelection[0];
    yui3.one(currentValueContainer).set("value", yui3.DataType.Date.format(newDate));
    isMouseOverCalendar = false;
    hideCalendar();
});

Show Calendar function
This is the most complex part of functionality to show the calendar properly. See inline comments for the details:
var showCalendar = function (event) {
    // It's a text field that a user clicked on
    currentValueContainer = event.target;

    // Saving position of a text field to calculate position of calendar
    var xy = yui3.one(currentValueContainer).getXY(), 
    // Getting current date value in the text field
        dateString = yui3.one(currentValueContainer).get("value");

    // Clearing previously selected dates if any
    calendar.deselectDates();
    // If the text field had some date value before
    if (dateString) {
        // Parsing the date string into JS Date value
        var date = yui3.DataType.Date.parse(dateString);
        if (date) {
            // Highlighting the date stored in the text field
            calendar.selectDates(date);
        } else {
            date = new Date();
        }
        // Setting calendar date to show corresponding month
        calendar.set("date", date);
    } else {
        calendar.set("date", new Date());
    }
    // Finally render the calendar window
    calendar.render();

    // Required styles to show calendar in a proper position
    yui3.one(boundingBoxId).setStyles({
        display: "block",
        position: "absolute"
    });
    // Set calendar window position right below the text field
    yui3.one(boundingBoxId).setXY([xy[0], xy[1] + 20]);
};
I should give some remarks here:
  • This doesn't fully work in IE - you will loose the currently selected date when you click on the text field again. That's because IE cannot parse dateString into valid JS Date but returns null instead.
  • The single instance of Calendar is used on the page. That's why we have to deselect old date, parse date value stored in the text field and select this date in calendar manually. However, you benefit from it when you have many date selection text fields on the page (in my case there are 3 date ranges, thus, 6 date text fields).
  • Check YUI3 Calendar API page for more details.

Hide Calendar function
This function simply hides the calendar window from the page.
var hideCalendar = function () {
    if (!isMouseOverCalendar) {
        yui3.one(boundingBoxId).setStyle("display", "none");
    }
};
That's it. It works flawlessly in Chrome and Firefox, also quite nice in IE8 except loosing selected date when clicking text fields again. YUI version used is 3.4.1.

Comments

  1. This comment has been removed by a blog administrator.

    ReplyDelete
  2. Hi..same code iam using in yui3 calendar development..its not working..please help me to find.
    My code

    YUI().use('calendar', 'datatype-date', function(Y) {
    var boundingBoxId = "#calendar-container",
    isMouseOverCalendar = false,
    currentValueContainer = '',
    calendar = new Y.Calendar({
    boundingBox: boundingBoxId,
    width: "300px"
    });

    var dateFields = ["#startDate", "#endDate"];

    Y.on("focus", showCalendar, dateFields);
    Y.on("blur", hideCalendar, dateFields);

    Y.on("mouseover", function () {
    isMouseOverCalendar = true;
    }, boundingBoxId);

    Y.on("mouseout", function () {
    isMouseOverCalendar = false;
    }, boundingBoxId);

    calendar.on("selectionChange", function (event) {
    var newDate = event.newSelection[0];
    Y.one(currentValueContainer).set("value", Y.DataType.Date.format(newDate));
    isMouseOverCalendar = false;
    hideCalendar();
    });

    var showCalendar = function (event) {
    // It's a text field that a user clicked on
    currentValueContainer = event.target;

    // Saving position of a text field to calculate position of calendar
    var xy = Y.one(currentValueContainer).getXY(),
    // Getting current date value in the text field
    dateString = Y.one(currentValueContainer).get("value");

    // Clearing previously selected dates if any
    calendar.deselectDates();
    // If the text field had some date value before
    if (dateString) {
    // Parsing the date string into JS Date value
    var date = Y.DataType.Date.parse(dateString);
    if (date) {
    // Highlighting the date stored in the text field
    calendar.selectDates(date);
    } else {
    date = new Date();
    }
    // Setting calendar date to show corresponding month
    calendar.set("date", date);
    } else {
    calendar.set("date", new Date());
    }
    // Finally render the calendar window
    calendar.render();

    // Required styles to show calendar in a proper position
    Y.one(boundingBoxId).setStyles({
    display: "block",
    position: "absolute"
    });
    // Set calendar window position right below the text field
    Y.one(boundingBoxId).setXY([xy[0], xy[1] + 20]);
    };

    var hideCalendar = function () {
    if (!isMouseOverCalendar) {
    Y.one(boundingBoxId).setStyle("display", "none");
    }
    };

    });


    thanks.

    ReplyDelete
    Replies
    1. Hi, indeed it didn't work properly until I modified the following code snippet in the article:

      // To show calendar when user clicks on text fields
      yui3.on("focus", function(event) { showCalendar(event) }, dateFields);
      // To hide calendar when text fields loose focus
      yui3.on("blur", function() { hideCalendar() }, dateFields);

      Please check if it works for you.

      Delete

Post a Comment

Popular posts from this blog

Connection to Amazon Neptune endpoint from EKS during development

This small article will describe how to connect to Amazon Neptune database endpoint from your PC during development. Amazon Neptune is a fully managed graph database service from Amazon. Due to security reasons direct connections to Neptune are not allowed, so it's impossible to attach a public IP address or load balancer to that service. Instead access is restricted to the same VPC where Neptune is set up, so applications should be deployed in the same VPC to be able to access the database. That's a great idea for Production however it makes it very difficult to develop, debug and test applications locally. The instructions below will help you to create a tunnel towards Neptune endpoint considering you use Amazon EKS - a managed Kubernetes service from Amazon. As a side note, if you don't use EKS, the same idea of creating a tunnel can be implemented using a Bastion server . In Kubernetes we'll create a dedicated proxying pod. Prerequisites. Setting up a tunnel.

Notes on upgrade to JSF 2.1, Servlet 3.0, Spring 4.0, RichFaces 4.3

This article is devoted to an upgrade of a common JSF Spring application. Time flies and there is already Java EE 7 platform out and widely used. It's sometimes said that Spring framework has become legacy with appearance of Java EE 6. But it's out of scope of this post. Here I'm going to provide notes about the minimal changes that I found required for the upgrade of the application from JSF 1.2 to 2.1, from JSTL 1.1.2 to 1.2, from Servlet 2.4 to 3.0, from Spring 3.1.3 to 4.0.5, from RichFaces 3.3.3 to 4.3.7. It must be mentioned that the latest final RichFaces release 4.3.7 depends on JSF 2.1, JSTL 1.2 and Servlet 3.0.1 that dictated those versions. This post should not be considered as comprehensive but rather showing how I did the upgrade. See the links for more details. Jetty & Tomcat. JSTL. JSF & Facelets. Servlet. Spring framework. RichFaces. Jetty & Tomcat First, I upgraded the application to run with the latest servlet container versio

Extracting XML comments with XQuery

I've just discovered that it's possible to process comment nodes using XQuery. Ideally it should not be the case if you take part in designing your data formats, then you should simply store valuable data in plain xml. But I have to deal with OntoML data source that uses a bit peculiar format while export to XML, i.e. some data fields are stored inside XML comments. So here is an example how to solve this problem. XML example This is an example stub of one real xml with irrelevant data omitted. There are several thousands of xmls like this stored in Sedna XML DB collection. Finally, I need to extract the list of pairs for the complete collection: identifier (i.e. SOT1209 ) and saved timestamp (i.e. 2012-12-12 23:58:13.118 GMT ). <?xml version="1.0" standalone="yes"?> <!--EXPORT_PROGRAM:=eptos-iso29002-10-Export-V10--> <!--File saved on: 2012-12-12 23:58:13.118 GMT--> <!--XML Schema used: V099--> <cat:catalogue xmlns:cat=