i've just started using jQuery Templates as my javascript template engine. My question is, how can i format a date (returned from a ASP.NET Json ActionResult) in the form:

/Date(1288709830000)/

I tried doing the following:

{{= $.format(new Date(parseInt(comment.DateCreated.substr(6))), 'd')}} 

Note the above uses the new jquery globalization plugin to add the $.format method. Also note that {{= comment.DateCreated }} is long hand for saying ${comment.DateCreated}.

I'd really appreciate it if you could help.

link|improve this question

What do you expect? What is actually happening? – jfar Dec 3 '10 at 1:17
i wouldn't recommend using jQuery or JavaScript for templating, it's just one big disaster if you ask me - try doing your templating at the MVC view/server level. – Erx_VB.NExT.Coder Dec 3 '10 at 3:19
7  
@Erx_VB.NExT.Coder - Javascript and JQuery templating is such a NON disaster that Microsoft is helping develop this kind of functionality into the CORE of JQuery. Client side templating is awesome for bandwidth sensitive mobile development, when you are working with an API, and especially cool when your working with an external designer. – jfar Dec 3 '10 at 4:09
@jfar: It throws back the error "Invalid character" when it calls the buildTmplFn function inside the tmpl plugin. – nfplee Dec 3 '10 at 9:04
@Erx: Your comment would be more constructive if you explained why you feel that way. – Robert Harvey Dec 11 '10 at 19:16
show 1 more comment
feedback

5 Answers

I've come up with a very hacky solution. If you add the following function to the page:

function format(o, t) {
    return $.format(o, t);
}

You can then change the expression to:

{{= format(new Date(parseInt(comment.DateCreated.substr(6))), 'd') }}

And it works fine. This seems strange that two plugins both created by Microsoft would conflict in this way.

link|improve this answer
feedback
up vote 1 down vote accepted

This does actually work. I was using the beta version hosted on the Microsoft CDN. If you download the latest version everything works as expected.

link|improve this answer
What "does actually work"? – Homer Jun 15 '11 at 18:02
This line: {{= $.format(new Date(parseInt(comment.DateCreated.substr(6))), 'd')}}. Hope it helps. – nfplee Jun 22 '11 at 15:13
feedback

To format a datetime within a jquery template you could write a fuction like:

function formatDate(datetime) {
    var dateObj = new Date(datetime);
    var dateStr = (dateObj.getMonth()+1) + "/" + dateObj.getDate() + "/" + dateObj.getFullYear();
    return dateStr; // will return mm/dd/yyyy
}

You can then call this fucntion from within your jquery template like so: ${formatDate(comment.DateCreated)}

for more details see: http://api.jquery.com/template-tag-equal

link|improve this answer
feedback

This is what I used

var formatDate = function (datetime) {
    var dateObj = new Date(parseInt(datetime.replace("/Date(", "").replace(")/", ""), 10));
    return dateObj.format("dd-MMM-yyyy"); //01-Jun-2001
}

And this in my JQuery Template

${formatDate(InceptionDate)}

link|improve this answer
feedback

I'm using this:

var m_names = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
var datetime = '/Date(1294182000000+0100)/';
var dateString = datetime.replace(/[^+0-9]*/img, ""); //strip away any character that is not 0-9 or +
var dateObj = new Date(parseInt(dateString, 10));
var curr_date = dateObj.getDate();
var curr_month = dateObj.getMonth();
var curr_year = dateObj.getFullYear();
var returnValue = curr_date + "-" + m_names[curr_month] + "-" + curr_year;
document.write(returnValue);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.