Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

SPListItem.GetFormattedValue seems to have a strange behavior for DateTime fields. It retrieves the DateTime value through SPListItem's indexer which according to this MSDN article returns local time. Here's a snippet from Reflector

public string GetFormattedValue(string fieldName)
{
    SPField field = this.Fields.GetField(fieldName);
    if (field != null)
    {
        return field.GetFieldValueAsHtml(this[fieldName]);
    }
    return null;
}

So it uses SPListItem's indexer to retrieve the value and than SPFields.GetFieldValueAsHtml to format the value. GetFieldValueAsHtml seems to assume the date is in UTC and convert it to local time no matter what kind it is. (Reflector shows that it uses GetFieldValueAsText which uses value.ToString() but for some reason it assumes the time to be UTC.)

The end result is that the string representation on a time field obtained trough listItem.GetFormattedValue() (at least in my case) is incorrect, being local time + (local time - UTC).

Have anybody encountered the same issue with SPListItem.GetFormattedValue() and what was your workaround?

share|improve this question
Do you want to know if anyone else has encountered it or also what they've done to get around it? – Alex Angas Nov 10 '08 at 14:29
Both :) Though there is an obvious workaround. – axk Nov 10 '08 at 14:46

2 Answers

up vote 5 down vote accepted

Converting the date back to universal time before calling GetFieldValueAsHtml works just fine.

DateTime localTime = (DateTime)item["DueDate"];
// this is local time but if you do localDateTime.Kind it returns Unspecified
// treats the date as universal time.. 
// let's give it the universal time :)
DateTime universalTime = SPContext.Current.Web
    .RegionalSettings.TimeZone.LocalTimeToUTC(localTime);
string correctFormattedValue = 
    item.Fields["DueDate"].GetFieldValueAsHtml(universalTime);
share|improve this answer
Excellent answer - hope it gets flagged as correct! BTW - the same problem applies to SPFieldDateTime.GetFieldValueAsHtml(DateTime,SPWeb,SPDateFormat) – Ryan Jun 23 '09 at 21:28

I have had a recognised bug with the date conversion from UTC in SharePoint. It was fixed in SP1.

share|improve this answer
Hm, can't find it in the descriptions (KBs) of neither MOSS 2007 SP1 or WSS 2007 SP1. – axk Nov 11 '08 at 9:34
Yeah, I was surprised by the omission myself. – Nat Nov 11 '08 at 20:27
Was it this particular bug? Do you have a KB reference? I've tested WSS 3 SP1 + and its still there. – Ryan Jun 23 '09 at 20:37
I have tried to get the KB article and failed. I have since dealt with a UTC conversion bug to do with Usage Reports failing. That too does not have a KB article and is fixed in SP2. – Nat Jun 24 '09 at 1:29
This bug is not fixed in SP1 (neither WSS 3 SP1 nor MOSS 2007 SP1). Also not fixed by the Infrastructure Updates. Also not fixed as of the cumulative update from August 2010. – Perry Jan 23 '12 at 19:00
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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