I have several grids in my application in which I use summary rows.
I use the following settings in initialize layout for the appearance of the summary row:
.SummaryDisplayArea = SummaryDisplayAreas.Bottom .SummaryFooterCaptionVisible = DefaultableBoolean.False .SummaryFooterSpacingBefore = 7 .SummaryFooterAppearance = GlobalModule.SummaryRowAppear .SummaryValueAppearance = GlobalModule.SummaryCellAppear
Here are the appearances I reference:
With GlobalModule.SummaryRowAppear .Key = "SummaryRowAppear" .BackColor = PaleBlue .BorderColor = DarkBlue .FontData.Bold = DefaultableBoolean.True .ForeColor = Color.Black End With
With GlobalModule.SummaryCellAppear .Key = "SummaryCellAppear" .BackColor = PaleBlue .BorderColor = PaleBlue .FontData.Bold = DefaultableBoolean.True .TextHAlign = HAlign.Right .ForeColor = Color.Black End With
For all of the grids, this is how the row ends up looking:
However, I just made a new grid and applied the same properties, and it displays as follows:
Am I missing a grid property that would do this / counteract my settings?
Thanks Mike,
I'll try to do that
Thanks!!!~Kelly
Hi Kelly,
Ideally, the best thing would be to have a small working sample project that demonstrates the problem occurring. Perhaps you can make a copy of your project and remove everything but the relevant grid?
Hi Mike,
What would you need to determine what is wrong? the entire initialize layout function and full screen shots?
Thanks~Kelly
Hi,
I don't see anything obviously wrong with the code. But it's hard to tell from a code snippet and with a screen shot that doesn't include the rest of the grid where I can't see the columns.