Hello,
I use a TextColumn with a IValueConverter in a xamgrid to get a specific format on the grid value.
Is it possible to use the same converter on some summary operands (Minimum, Maximum, ...) to get the same format in summary? Summary has a FormatString property but no ValueConverter property.
Regards,Julien
There is no way through the API to switch out the value converter. The SummaryRowCellControl has a uses the FormatString in it's value converter which is assigned in the Generic.xaml.
Which means you could retemplate the SummaryRowCellControl to use your converter though.
Is it possible to get a sample explaining how to retemplate a summary ? Is it possible to this on a column per column basis?
Actually the summaries are the only place where I can not use converter : this is possible for group by via a Template.
It's a pity that when you use a format string or a converter on a TextColumn, you don't get the same converter or format string automatically when the column is grouped or used for summary. That would be a great feature and simplify the work of developpers in some situation (enum, date, numbers with correct formatting in a TextColumn)