Back to parent folder button in document manager

I currently have to double click to go one level up. Can this be changed to a single click event?

Hello @Jonas ,

This change can be achieved by customizing the List class (docManager.views.list). Please check the snippet here: Code Snippet .
Or, if you need to process a click only on the item (“back to parent folder”), then check this variant: Code Snippet .

In the first case, the existing logic is simply borrowed from the onItemDblClick handler.
In the second case, when clicking on the desired item, the associated logic is called before calling the logic from the onItemDblClick handler (meaning we bypass the default logic).