Avendo
una data in Jscript per formattarla a mio piacimento posso creare una
funzioncina che gioca con la concatenazione di stringhe:
function
FormatDate(date,format)
{
var formattedDate;
if (format=="yyyy/MM/dd") formattedDate = data.getYear()+"/"+data.getMonth()+1+"/"+data.getDate();
else if (format=="dd/MM/yyyy") formattedDate = data.getDate()+"/"+(data.getMonth()+1)+"/"+data.getYear();
return
formattedDate;
}
|
Nel CRM che c'è una funzione per formattare le date con il formato
dell'utente corrente:
FormatDate(crmForm.all.[MyField].DataValue)
dove
[MyField] è un campo di tipo date