Proactive way of sorting date column from XML using JavaScript

Advertisement
Post Pic

I am back again with some helpful snippet code. Here using JavaScript we can pro actively sort date fields. Think that you guys are working on a project where in which you guys have used XML as a database to store some relavent data in XML tags. In that XML if you have a date tag or an attribute called date you guys has retrieved all the stuffs related to date tag into an array, now if you want to sort that array you guys (I mean who are not expert in JavaScript) they will use date_array.sort() function. Here is were the developers do mistakes… this will not workout.

Ok.. For Example consider this scenario

var date_array = new Array("12-Jan-2006", "12-feb-2006", "01-Jan-2006", "10-feb-2006");

If you guys do in this way, in some scenarios date_array.sort() will not work.

For the above problem you guys can go a head like this:

var mNo=new Object(); // Creating an Object of Actual Number of month - for ex: for jan mention it as 01.
mNo.jan = '01';mNo.feb = '02';mNo.mar = '03';mNo.apr = '04';mNo.may = '05';mNo.jun = '06';mNo.jul = '07';mNo.aug = '08';mNo.sep = '09';mNo.oct = '10';mNo.nov = '11';mNo.dec = '12';

var dateSorting = new Array();
for(i=0; i<date_array.length;i++){
if(date_array!=""){
var tempDate=date_array.split("-");
d=tempDate[0];
tempDate[1]=tempDate[1].toLowerCase();
m=eval("monthNo."+tempDate[1]);
y=tempDate[2];
dateSorting[dateSorting.length]=[Number(y+m+d)];
}
}
dateSorting.sort();
alert("After Sorting: "+dateSorting);

What do you say guys, is this snippet is useful?, if you like this post – please do share the same with others. :)

Rock Up!!!

Related Entries...

You Might Like:

Advertisement

Please let us know your feedback about the article through the comments section below, we want to hear from you about our website. And your comment / advice may help us to serve you better in upcoming articles.

Thank You!
Vivekanand [Founder of DeveloperSnippets]

Leave Your Response

* Name, Email, Comment are Required

Write For Us

Online Sponsors

Start Foreign Exchange Trading today with the Forex Affiliate Program and also you can have access Online Forex News to know what happens every single moment.


Forex Floor


Switch to our mobile site