Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
355
Simple summary format problem
posted

Hi,

I'm trying to have my summary row only displaying the value (wihtout 'Sum = ').

I add the SummarySettings in the InitializeLayout like

e.Layout.Bands(0).Summaries.Add(UltraWinGrid.SummaryType.Sum, e.Layout.Bands(0).Columns("SSOLLME"))

and tried:

For Each ss As SummarySettings In e.Layout.Bands(0).Summaries
ss.DisplayFormat = "{0}" 'or "{0:d}
Next

for each SummarySetting. But that didn't change anything in the output, I always get 'Sum = {0}'.

Am I missing something or what am I doing wrong???


Thanks for your help,

KurtJulius