Normal date (absolute value with hh:mm:ss time)
<ColStyle Name="Modified" Height="0" SortName="Modified">
<CellTemplate>
<TextBlock Text="{Binding Path=[page.modifiedDate]}"/>
</CellTemplate>
</ColStyle>
Normal date (absolute value with hh:mm time)
<ColStyle Name="Modified" Height="0" SortName="Modified">
<CellTemplate>
<TextBlock Text="{Binding Path=[page.modifiedDate], Converter={StaticResource StringFormatValueConverter}, ConverterParameter=\{0:g\}}}"/>
</CellTemplate>
</ColStyle>
Fuzzy date (relative value)
<ColStyle Name="Modified" Width="100" Height="0" SortName="Modified">
<CellTemplate>
<l:TimeAgoBlock VerticalAlignment="Top" Text="{Binding Path=[archiveObject.modifiedDate]}" />
</CellTemplate>
</ColStyle>
See also