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
1265
Summary Row Appearance Issue
posted

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?

Parents Reply Children
No Data