RadzenUpload file display below control

Is there any way to customize or hide the file display that appears below the upload control on a manual upload control?
Thanks!

Yes, you can hide the file list below the upload control using CSS:

.rz-fileupload-files {
    display: none;
}

If you want to scope it to a specific instance, wrap the component and target it:

<div class="custom-upload">
    <RadzenUpload Auto="false" ... />
</div>

<style>
    .custom-upload .rz-fileupload-files {
        display: none;
    }
</style>

If you want to customize the display rather than hide it entirely, you can hide the default list with the CSS above and then handle the Change event to get the selected files and render your own UI for them.