Click here to Skip to main content
15,880,503 members
Articles / Web Development / ASP.NET

Exploring Globalization with jQuery

Rate me:
Please Sign up or sign in to vote.
4.82/5 (33 votes)
13 Feb 2011CPOL6 min read 186.5K   2.2K   77   47
This article discusses another official plugin of jQuery that is Globalization

Table of Contents

Introduction

Recently, Microsoft announced three jQuery plugins as Official plugins.

  • jQuery Client Templating
  • Data linking
  • Globalization

I found all of them very cool features for web development. I have already written articles about the first two. Please find the links below:

I think you all must have found the above articles very useful and will be using them in the near future or some of you might have started using this. I would request you all to share your views about the article, which will be very helpful for me to write better.

Now, in this article, I am going to discuss the last feature, that is Globalization. When we say Globalization, the thing that comes in our mind is resource files. ASP.NET itself provides very good facility to cater to the needs of Globalization. But it requires a postback, so it doesn't look nice and not good in performance as well.

jQuery also provides us a way to implement the globalization, with supported plugin.

Again, I am writing a few common points that I wrote in my last two articles for new readers.

What is Globalization

As per MSDN, "Globalization is the process of designing and developing applications that function for multiple cultures."

So Globalization allows us to develop an application, which provides the option to localise the application in different cultures/languages. Now, as we are working in the global environment and serving the entire world, it becomes a necessity to provide the globalization feature to our application.

So in this article, I am going to discuss how we can provide the Globalization feature with the help of jQuery.

Prerequisite

  • jQuery library
  • Plugin for Globalization

jQuery already comes with VS2008/2010. But if you are working VS 2005, then you can download from the following link:

To download the plugin for Globalization, click here.

Globalization with jQuery

So in this article, I am going to discuss how we can utilise the Globalization feature of jQuery.

jQuery provides us with the power to format and parse date, number and currencies in different cultures. jQuery plugin defines over 350 cultures that are currently supported by the plugin.

There are languages that are common in few regions/countries, but the formatting of numbers, currencies and date varies. Like English is spoken in several countries USA, UK and other various European countries. For these, we have several cultures defined, that is used to identify the uniqueness amongst these countries.

This plugin comes in two flavors.

One file jQuery.glob.all.js includes around 350 cultures currently. So with this, we need to include only this file for all the cultures supported by the plugin. Another way, Plugin has also culture specific js files, that can be included based on cultures that are supported by the application.

Some Common APIs of the Plugin

  • jQuery.culture: This holds the culture information that is currently set and is used in default case, i.e., while formatting various values, this culture is used if no culture is specified.
  • jQuery.preferCulture: This method is used to set the culture that user prefers and this culture is used for all the formatting, parsing, etc. done on the page. Actually, as the method name suggests, it selects the best match culture whose JavaScript is included in the page.
  • jQuery.format: This method is used to format the date, number and currency in the given format string. This method is widely used.
  • jQuery.findClosestCulture: This method works in similar way as preferCulture but it returns the best matching culture and does not set the jQuery.culture to it.
  • jQuery.localize: This method allows us to extend the specific culture and returns or sets the localized value.

There are many more functions like jQuery.parseInt,jQuery.parseFloat, jQuery.parseDate, etc. provided by the plugin, that can be used for several specific purposes. I have discussed some of them.

Let's See Some Examples

Here in this section, I'll be showing you some examples.

First Example: In this example, I am displaying the stock details of Infosys on a specific date. It includes the price and number of units sold on a specific date in two different cultures. Let's see the running application.

Static

Now let's move to the code. First let's see the aspx code:

HTML
<table style="border:1px solid black; font-family:Verdana; font-size:small">
     <tr>
         <td colspan="2"><h3>English - US</h3></td>
     </tr>
     <tr>
         <td>Stock Name</td>
         <td><span id="Text1" >Infosys</span></td>
     </tr>
     <tr>
         <td>Stock Price </td>
         <td><span id="price"/></td>
     </tr>
     <tr>
         <td>Day</td>
         <td><span id="date"/></td>
     </tr>
     <tr>
         <td>Units Transacted</td>
         <td><span id="unitsTransacted" /></td>
     </tr>
     <tr>
         <td colspan="2"><h3>France - French </h3></td>
     </tr>
     <tr>
         <td>Stock Name</td>
         <td><span id="Span1">Infosys</span></td>
     </tr>
     <tr>
         <td>Stock Price </td>
         <td><span id="price1"/></td>
     </tr>
     <tr>
         <td>Date</td>
         <td><span id="date1"/></td>
     </tr>
     <tr>
         <td>Units Transacted</td>
         <td><span id="unitsTransacted1" /></td>
     </tr>
 </table>

As you can see above, I am displaying Stock details of Infosys in two different cultures English-US and France-French. Now let's jump to script. Here are the scripts that I have included. These are:

HTML
<script src="scripts/jquery-1.4.2.js" type="text/javascript"></script>
<script src="scripts/jquery.glob.js" type="text/javascript"></script>
<script src="scripts/globinfo/jQuery.glob.all.js" type="text/javascript"></script>

So I have included three files here. First the jQuery file, the common Global file and last one is the file that contains all culture specific details. Now rest of the JavaScript code is:

JavaScript
// Set culture
jQuery.preferCulture("en-US");

// Formatting price
var price = jQuery.format(3899.888, "c");
//Assigning stock price to the control
jQuery("#price").html(price);

// Formatting date 
var date = jQuery.format(new Date(2010, 11, 15), "D");
//Assigning date to the control
jQuery("#date").html(date);

// Formatting units transacted
var units = jQuery.format(45678.576, "n2");
//Assigning units to the control
jQuery("#unitsTransacted").html(units);

// Set culture
jQuery.preferCulture("fr-FR");

// Format price
var price = jQuery.format(3899.888, "c");
//Assigning stock price to the control
jQuery("#price1").html(price);

// Format date available
var date = jQuery.format(new Date(2010, 11, 15), "D");
//Assigning date to the control
jQuery("#date1").html(date);

// Format units in stock
var units = jQuery.format(45678.576, "n2");
//Assigning units to the control
jQuery("#unitsTransacted1").html(units);  

As you can see from the above code, I have used the preferCulture method to set the culture and format method to format the various data like price, date and units here.

So above is the simple example which describes how the plugin works.

Changing Culture Dynamically

Now in this example, I am talking about another scenario where user may want to select the culture dynamically, and wants to get the page updated accordingly.

In my sample example, I have one dropdown, user selects the culture and page is gets updated accordingly. First let's see the application.

Dynamic Culture

Now let's jump to the code. First let's view the aspx code:

HTML
<table style="border:1px solid black; font-family:Verdana; font-size:small">
          <tr>
              <td style="font-weight:bold">Select Culture</td>
              <td>
                  <select id="ddlCultures">
                      <option value="en-US">English - US</option>
                      <option value="en-IN">EngLish - India</option>
                      <option value="en-AU">EngLish - Australia</option>
                      <option value="fr-FR">French - France</option>
                      <option value="es-MX">Spanish - Mexico</option>
                  </select>
              </td>
          </tr>
          <tr>
              <td style="font-weight:bold">Stock Name</td>
              <td> <span id="Text1">Infosys </span></td>
          </tr>
          <tr>
              <td style="font-weight:bold">Stock Price</td>
              <td><span id="price"/></td>
          </tr>
          <tr>
              <td style="font-weight:bold">Day</td>
              <td><span id="date"/></td>
          </tr>
          <tr>
              <td style="font-weight:bold">Units Transacted</td>
              <td><span id="unitsTransacted"/></td>
          </tr>
      </table>

Now let's see the scripts included:

HTML
<script src="scripts/jquery-1.4.2.js" type="text/javascript"></script>
<script src="scripts/jquery.glob.js" type="text/javascript"></script>
<script src="scripts/globinfo/jQuery.glob.en-US.min.js" type="text/javascript"></script>
<script src="scripts/globinfo/jQuery.glob.en-IN.min.js" type="text/javascript"></script>
<script src="scripts/globinfo/jQuery.glob.en-AU.min.js" type="text/javascript"></script>
<script src="scripts/globinfo/jQuery.glob.fr-FR.min.js" type="text/javascript"></script>
<script src="scripts/globinfo/jQuery.glob.es-MX.min.js" type="text/javascript"></script>

As you can see above, I have included culture specific files instead of one common file for all the cultures because the size of common files for all 350 cultures could be a performance overhead. As we know, these are specific cultures that are going to be used in the application, then we should go for culture specific files.

Now the JavaScript code:

JavaScript
LoadPage("en-US");

jQuery("#ddlCultures").change(function() {
    var selectedCulture = this.value;
    LoadPage(selectedCulture);
});

   function LoadPage(selectedCulture) {

       jQuery.preferCulture(selectedCulture);

       var price = $.format(3899.888, "c");
       jQuery("#price").html('12345');

       // Format date available
       var date = $.format(new Date(2011, 12, 25), "D");
       jQuery("#date").html(date);

       // Format units in stock
       var units = $.format(45678, "n0");
       jQuery("#unitsTransacted").html(units);
   }

In this code, I have taken a dropdown with multiple cultures. One can select the desired culture and the page will be modified accordingly. I have used the same form but I have called preferculture method based on the selection of dropdown.

Rest of the code is he same as the above example. 

Note: You can find the complete sample in the attachment.

Picking Culture Info from Browser

Sometimes, user also sets culture preferences in the browser. And lots of applications rely on it. So we can also read the culture information from the browser and can load the page accordingly. To get the culture information, we can use the following:

JavaScript
var language = "<%= Request.UserLanguages[0] %>";
jQuery.preferCulture(language);

Conclusion

This feature is very useful for the applications targeting the entire Globe. As you are moving forward towards RIA applications, this plugin of jQuery could be key.

Feedback and Suggestions

Hope you have enjoyed my above article. Please share your valuable feedback that will help me a lot to write better.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
India India
Brij is a 3-times Microsoft MVP in ASP.NET/IIS Category and a passionate .NET developer. More than 6 years of experience in IT field, currently serving a MNC as a Tech Lead/Architect.

He is a very passionate .NET developer and have expertise over Web technologies like ASP.NET 2.0/3.5/4.0, jQuery, JSON, Javascript, IIS and related technologies. He is also a Exchange Server (EWS) Specialist. He has great experience in design patterns and N-Tier Architecture.

He is also certified as Microsoft Certified Technologies Specialist-ASP.NET and Microsoft Certified Technologies Specialist-WCF in .NET 4.0. He has also received several awards at various forums and his various articles got listed as "Article of the day" at ASP.NET Microsoft Official Website www.asp.net.

He has done MCA from NIT Durgapur and completed his graduation from Lucknow University.

Learning new technologies and sharing knowledge excites him most. Blogging, solving problems at various forums, helping people, keeps him busy entire day.


Visit his Blog: Code Wala

Area of Expertise :
C#, ASP.NET 2.0,3.5,4.0, AJAX, JQuery, JSON, XML, XSLT, ADO.Net, WCF, Active Directory, Exchange Server 2007 (EWS), Java script, Web Services ,Win services, DotnetNuke, WSS 3.0,Sharepoint Designer, SQL Server 2000/2005/2008

Comments and Discussions

 
GeneralRe: My vote of 5 Pin
Brij3-Feb-11 4:16
mentorBrij3-Feb-11 4:16 
GeneralMy vote of 5 Pin
Yusuf2-Feb-11 15:30
Yusuf2-Feb-11 15:30 
GeneralRe: My vote of 5 Pin
Brij2-Feb-11 19:39
mentorBrij2-Feb-11 19:39 
GeneralMy vote of 5 Pin
Eric Xue (brokensnow)2-Feb-11 12:22
Eric Xue (brokensnow)2-Feb-11 12:22 
GeneralRe: My vote of 5 Pin
Brij2-Feb-11 19:42
mentorBrij2-Feb-11 19:42 
GeneralMy vote of 5 Pin
jim lahey2-Feb-11 6:23
jim lahey2-Feb-11 6:23 
GeneralRe: My vote of 5 Pin
Brij2-Feb-11 8:40
mentorBrij2-Feb-11 8:40 
GeneralMy vote of 5 Pin
Abhijit Jana2-Feb-11 3:34
professionalAbhijit Jana2-Feb-11 3:34 
GeneralRe: My vote of 5 Pin
Brij2-Feb-11 4:12
mentorBrij2-Feb-11 4:12 
GeneralMy vote of 4 Pin
Wonde Tadesse2-Feb-11 1:44
professionalWonde Tadesse2-Feb-11 1:44 
GeneralRe: My vote of 4 Pin
Brij2-Feb-11 2:19
mentorBrij2-Feb-11 2:19 
GeneralMy vote of 5 Pin
thatraja2-Feb-11 1:25
professionalthatraja2-Feb-11 1:25 
GeneralRe: My vote of 5 Pin
Brij2-Feb-11 2:18
mentorBrij2-Feb-11 2:18 
GeneralRe: My vote of 5 Pin
thatraja2-Feb-11 2:25
professionalthatraja2-Feb-11 2:25 
GeneralRe: My vote of 5 Pin
Brij2-Feb-11 6:13
mentorBrij2-Feb-11 6:13 
Generalnice one - have 5 Pin
Pranay Rana1-Feb-11 23:24
professionalPranay Rana1-Feb-11 23:24 
GeneralMy vote of 5 Pin
Kunal Chowdhury «IN»1-Feb-11 19:36
professionalKunal Chowdhury «IN»1-Feb-11 19:36 
GeneralRe: My vote of 5 Pin
Brij1-Feb-11 19:52
mentorBrij1-Feb-11 19:52 
GeneralMy vote of 5 Pin
Sudeep3501-Feb-11 18:59
Sudeep3501-Feb-11 18:59 
GeneralRe: My vote of 5 Pin
Brij1-Feb-11 19:53
mentorBrij1-Feb-11 19:53 
GeneralMy vote of 5 Pin
RaviRanjanKr1-Feb-11 17:32
professionalRaviRanjanKr1-Feb-11 17:32 
GeneralRe: My vote of 5 Pin
Brij1-Feb-11 18:53
mentorBrij1-Feb-11 18:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.