Remove download option from Context menu of FileManager Blazor

1 Answer 16 Views
FileManager
Tasnim
Top achievements
Rank 1
Iron
Iron
Tasnim asked on 08 Apr 2025, 11:40 AM

Hi Team,

How can I remove download option from Context menu of FileManager Blazor

1 Answer, 1 is accepted

Sort by
1
Accepted
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
answered on 08 Apr 2025, 12:01 PM

I believe the FileManager component does not currently offer a way to customize the context menu.

As a workaround, you can hide the Download option using CSS like this:

<style>
    li.k-menu-item:has(span.k-svg-i-download) {
        display: none;
    }
</style>

Keep in mind that this approach may stop working in the future if Telerik removes the Download icon from the context menu.

Regards,
Anislav Atanasov
Tags
FileManager
Asked by
Tasnim
Top achievements
Rank 1
Iron
Iron
Answers by
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Share this question
or