Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
saviostrazzullo
Contributor III
Contributor III

Modal selection error

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

2 Replies
zplotnikova
Partner - Contributor II
Partner - Contributor II

Have you managed to figure out the Function not allowed on this object in app modal mode error?

PythonMCSJ
Partner - Contributor III
Partner - Contributor III

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.