Hi Team,
I’m working on a customization in Apliqo UX NextGen and I need to detect whether the application is currently in Edit Mode or not — ideally from JavaScript or in a way that can be referenced in an HTML widget.
The goal is to conditionally show/hide elements or change behavior depending on whether a user is editing or just viewing a dashboard/Report.
What I’ve already tried:
- Scanning all DOM elements for
__vue_app__(Vue 3 mount point) — nothing found - Checking
windowglobals — only foundwindow.store,window.cookieStore, andwindow.oncontextrestored - Exploring
window.storefor edit-related state — returnedundefined - Checking body/root CSS classes for an
edit-modeclass — nothing - Checking the URL / hash / query params for edit indicators — nothing
- Checking for Shadow DOM roots — nothing found
Thanks in advance