I have a column of type System.DateTime in an ultragrid. This column iscalled Budget Week. When I group by it, in Outlook Style mode, the captionon the group-by row looks like this:Budget Week : 12/24/2007 12:00:00 AM (272 items)I would like it to look likeBudget Week : 12/24/2007 (272 items)How do I get this to happen?
Hi Howard,
Setting Format on the column should work. Set the Format to something lilke "mm/dd/yyyy" (consult .NET help for applicable date time formats). If that doesn't work then you can always hook into InitializeGroupByRow event and assign any custom text to the Description property of the group-by row.
Hope this helps,
Sandip