[NextGen UX] How to detect Edit Mode in Apliqo UX via JavaScript / HTML?

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 window globals — only found window.store, window.cookieStore, and window.oncontextrestored
  • Exploring window.store for edit-related state — returned undefined
  • Checking body/root CSS classes for an edit-mode class — nothing
  • Checking the URL / hash / query params for edit indicators — nothing
  • Checking for Shadow DOM roots — nothing found

Thanks in advance

This field is the edit mode identification:

window.store.getState().system.editMode

Thanks alot