Completed
Last Updated: 11 Mar 2024 07:38 by ADMIN
Release 2024.1.228 (Preview)
Martin Ivanov
Created on: 12 Feb 2024 11:33
Category: CardView
Type: Bug Report
0
CardView: Card bottom border is clipped when validation summary is displayed in the Expression_Dark theme

The bottom of the card that shows the validation summary is missing (overlapped by the summary visual) when the Expression_Dark theme is used.

To work this around, you can set the Margin of the DataFormValidationSummary element to 0, via an implicit style defined in the RadCardView.Resources dictionary.

<telerik:RadCardView.Resources>
    <Style TargetType="dataForm:DataFormValidationSummary">
        <Setter Property="Margin" Value="0" />
    </Style>
</telerik:RadCardView.Resources>

0 comments