"
 
 
 
ASP.NET (snapshot 2017) Microsoft documentation and samples

Using the HTML5 and jQuery UI Datepicker Popup Calendar with ASP.NET MVC - Part 1

by Rick Anderson

This tutorial will teach you the basics of how to work with editor templates, display templates, and the jQuery UI datepicker popup calendar in an ASP.NET MVC Web application.

This tutorial will teach you the basics of how to work with editor templates, display templates, and the jQuery UI datepicker popup calendar in an ASP.NET MVC Web application. For this tutorial, you can use Microsoft Visual Web Developer 2010 Express Service Pack 1 (“Visual Web Developer”), which is a free version of Microsoft Visual Studio, or you can use Visual Studio 2010 SP1 if you already have that.

Before you start, make sure you’ve installed the prerequisites listed below. You can install all of them by clicking the following link: Web Platform Installer. Alternatively, you can individually install the required software using the following links:

If you’re using Visual Studio 2010 instead of Visual Web Developer, install the prerequisites by clicking the following link: Visual Studio 2010 prerequisites.

This tutorial assumes you have completed the Getting Started with MVC 3 tutorial or that you’re familiar with ASP.NET MVC development. This tutorial starts with the completed project from the Getting Started with MVC 3 tutorial.

This tutorial shows code in C#. However, the starter project and completed project are also available in Visual Basic.

A Visual Studio project with C# and Visual Basic source code is available to accompany this topic: Download.

What You’ll Build

You’ll add templates (specifically, edit and display templates) to the simple movie-listing application that was created in the Getting Started with MVC 3 tutorial. You will also add a jQuery UI datepicker popup calendar to simplify the process of entering dates. The following screenshot shows the modified application with the jQuery UI datepicker popup calendar displayed.

finished jQuery
finished jQuery

Skills You’ll Learn

Here’s what you’ll learn:

Getting Started

If you don’t already have the movie-listing application from the starter project, download it using the following link: Download. Then in Windows Explorer, right-click the MvcMovie.zip file and select Properties. In the MvcMovie.zip Properties dialog box, select Unblock. (Unblocking prevents a security warning that occurs when you try to use a .zip file that you’ve downloaded from the web.)

Right-click the MvcMovie.zip file and select Extract All to unzip the file. In Visual Web Developer or Visual Studio 2010, open the MvcMovieCS_TU.sln file.

In Solution Explorer, double-click the *Views\_Layout.cshtml* to open it. Change the H1 header from MVC Movie App to Movie jQuery. Press CTRL+F5 to run the application and click the Home tab, which takes you to the Index method of the movie controller. To try out the application, select the Edit link and the Details link for one of the movies. Notice that in the Index, Edit, and Details views, the release date and price are nicely formatted:

The formatting for the date and the price is the result of using the DisplayFormat attribute on properties of the Movie class.

Open the Movie.cs file and comment out the DisplayFormat attribute on the ReleaseDate and Price properties. The resulting Movie class looks like this:

[!code-csharpMain]

   1:  public class Movie {
   2:      public int ID { get; set; }
   3:   
   4:      [Required(ErrorMessage = "Title is required")]
   5:      public string Title { get; set; }
   6:   
   7:      //  [DisplayFormat(DataFormatString = "{0:d}")]
   8:      public DateTime ReleaseDate { get; set; }
   9:   
  10:      [Required(ErrorMessage = "Genre must be specified")]
  11:      public string Genre { get; set; }
  12:   
  13:      [Range(1, 100, ErrorMessage = "Price must be between $1 and $100")]
  14:      //[DisplayFormat(DataFormatString = "{0:c}")]
  15:      public decimal Price { get; set; }
  16:   
  17:      [StringLength(5)]
  18:      public string Rating { get; set; }
  19:  }

Press CTRL+F5 again to run the application and select the Home tab to view the movie list. This time the release date shows the date and time, and the price field no longer shows the currency symbol. Your change in the Movie class has undone the nice formatting that you saw earlier, but you’ll fix that in a moment.

Using the DataAnnotations DataType Attribute to Specify the Data Type

Replace the commented-out DisplayFormat attribute for the ReleaseDate property with the DataType attribute, using the Date enumeration. Replace the DisplayFormat attribute for the Price property with the DataType attribute again, this time using the Currency enumeration. This is what the completed code looks like:

[!code-csharpMain]

   1:  public class Movie {
   2:      public int ID { get; set; }
   3:   
   4:      [Required(ErrorMessage = "Title is required")]
   5:      public string Title { get; set; }
   6:   
   7:      [DataType(DataType.Date)]
   8:      public DateTime ReleaseDate { get; set; }
   9:   
  10:      [Required(ErrorMessage = "Genre must be specified")]
  11:      public string Genre { get; set; }
  12:   
  13:      [Range(1, 100, ErrorMessage = "Price must be between $1 and $100")]
  14:      [DataType(DataType.Currency)]
  15:      public decimal Price { get; set; }
  16:   
  17:      [StringLength(5)]
  18:      public string Rating { get; set; }
  19:  }

Run the application. Now the release date and the price properties are formatted correctly (that is, using appropriate date and currency formats). The DataType attribute provides type metadata for the built-in ASP.NET MVC templates so that the fields render in the correct format. Using the DataType attribute is preferable to using the DisplayFormat attribute that was originally in the code, because the DataType attribute makes the model cleaner and more flexible for purposes like internationalization.

In the next section you’ll see how to make custom templates to display date fields.

Next





Comments ( )
<00>  <01>  <02>  <03>  <04>  <05>  <06>  <07>  <08>  <09>  <10>  <11>  <12>  <13>  <14>  <15>  <16>  <17>  <18>  <19>  <20>  <21>  <22>  <23
Link to this page: //www.vb-net.com/AspNet-DocAndSamples-2017/aspnet/mvc/overview/older-versions/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc-part-1.htm
<SITEMAP>  <MVC>  <ASP>  <NET>  <DATA>  <KIOSK>  <FLEX>  <SQL>  <NOTES>  <LINUX>  <MONO>  <FREEWARE>  <DOCS>  <ENG>  <CHAT ME>  <ABOUT ME>  < THANKS ME>