hi, i would like to ask is the format of  gf-relativePublishedDate in
feedcontrol can be changed?

want to display the date in this format: "dd/mm/yyyy".

i write the code like this:
var itemDate = new Date(this.theDate);
var itemDate_year = itemDate.getFullYear();
var itemDate_month = itemDate.getMonth()+1;
var itemDate_day = itemDate.getDate();
var newItemDate = itemDate_day + "/" + itemDate_month +"/" +
itemDate_year;
entry.publishedDate = newItemDate;

but nothing is displayed out.

can anyone help me on this? thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"Google AJAX APIs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-ajax-search-api?hl=en.

Reply via email to