Upgrade to V5 - Theme Software

Hello,

I just upgraded to the last version of Radzen components and I am getting some style issues under the Software Theme.
On other themes everything is rendering correctly, but on Software theme not.

For now, I have two occurrences. One with the Pager and the other with a RadzenNumeric Inside a RadzenDataGridColumn.

Grid One:
image

Grid Two:
image

These two grids share the same code for that column:

<RadzenDataGridColumn Width="220px" TItem="RestockNeedsDTO" Property="RestockQtd" Title="Pickup Qtd" Sortable="false" Filterable="false">
    <Template Context="data">
        <RadzenNumeric Min="1"
                       Max="2147483648"
                       @bind-Value="data.RestockQtd"
                       Style="width:100%; display: block"
                       Name="SkuVariantCodePrefix" />
    </Template>
</RadzenDataGridColumn>

The problem with the Pager in both grids is the same:

For the Pager I have this in the Grid creation:

PageSize=20
AllowPaging="true"
PagerHorizontalAlign="Radzen.HorizontalAlign.Justify"
PageSizeOptions="@pageSizeOptions"

If I change to the Defauklt Theme or Standard or other, everything looks good:
image
image

Check our forum FAQ for details how to format your code.

Done, code formatted correctly!

This thread might help you:

1 Like

Thank you, found the answer in that post!
Everything fine now