Radzen datalist Template bug

Is there a way to get the rid of the Card on the datalist just like when you enable "WrapItems". I would like to create my own template that does not sorround the data with a card but i dont want the items to wrap?

Templates:

image

<RadzenDataList @ref="datalist0" AllowPaging="false" Data="@dataList" TItem="*****" Visible="@(*&& *!= null)" WrapItems="true">
    <Template Context="data">
        <RadzenLabel Text="@($"{(data.LogInfo.Tstamp)}")">
        </RadzenLabel>
    </Template>
</RadzenDataList>

<RadzenDataList @ref="datalist0" AllowPaging="false" Data="@dataList" TItem="*****" Visible="@(*&& *!= null)" WrapItems="false">
    <Template Context="data">
        <RadzenLabel Text="@($"{(data.LogInfo.Tstamp)}")">
        </RadzenLabel>
    </Template>
</RadzenDataList>

Hey @Gottegubben,

Not sure what bug you are referring, there is no Card inside DataList:

If you want to overwrite the default style you can simply define the same styles in your app with desired settings.

Okey, i my fault. I thought it was RadzenCard but it is just a border. How do i get rid of the border? Is it possible?

There are no styles by default:


So what is this? Standard.css same theme as you are using
image

Here is how to overwrite this:

1 Like