Yeah, I have the unfortunate situation of having to go into a project that makes use of ext.net.
There is a GridPanel with several columns, a couple of these are bound to datetime properties like this:
<ext:DateColumn Header="Started time" DataIndex="DateStarted" Format="yyyy-MM-dd HH:mm:ss" />
Now, I ned to run an extension method, ToUniversalTime(), on the property DateStarted.
It seems I can not change DataIndex="DateStarted" to DataIndex="DateStarted.ToUniversalTime()"