Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
We are using Qlik Server Enterprise and we have 2 differents projects.
We often have these 2 errors;
Modal selection error
Function not allowed on this object in app modal mode
and the application asks to close and refresh.
I also had the same error using monitoring app than it seems it doesn't depend on the projects we created.
Can you help me?
Thank you
Savio
Have you managed to figure out the Function not allowed on this object in app modal mode error?
The 6003 error - looking something like this:
Function not allowed on this object in app modal mode [6003]:Function not allowed on this object in app modal mode(Modal selection error)
Seems to occur when an action is performed that is not possible in the current state.
I encountered it again recently, when I attempted to (via the SDK) clear all selections in an app:
app.ClearAllAsync()
...that had locked field selections applied. Changing the above to:
app.ClearAllAsync(lockedAlso: true)fixed the issue.