Unplanned
Last Updated: 13 Jan 2023 11:22 by ADMIN
Meindert
Created on: 12 Aug 2022 12:34
Category: FileManager
Type: Feature Request
6
Control over displaying the ContextMenu
I want to be able to control when the ContextMenu is displayed. For example, I want to prevent it from opening based on my custom logic.
1 comment
ADMIN
Dimo
Posted on: 13 Jan 2023 11:22

Here is a possible temporary CSS workaround. The code hides all popups, which contain a download icon. This may not be universally applicable, but should work in most scenarios.

    .k-animation-container:has(.k-i-download) {
        display: none;
    }