In Umbraco 13.x when you have a custom backoffice view for a block you can include ng-click=“block.edit()” to make the entire block clickable, where a click opens the edit content pane.
Is there an equivalent for Umbraco 17? Without it users have to click the tiny edit icon, but I don’t see any mention of it on the docs page.
This is possible, and it is also a good example of where the Core code would work as a guide on the possibilities. Cause the Core Default Views are implemented with the same APIs as Custom Views have available. — In general, there is no difference between Core code and customizations, so if you learn to navigate the Core code base there is a ton of knowledge available for you
I took some code from there, which shows how to make it happen via a URL. This is the preferred implementation as it enables the user to copy the link or just Ctrl+Click/CMD+Click (or right-click ‘open in a new tab’) to open the Edit modal in a new Tab.