Perspective Component Event Security not Working

Hello, I am trying to use roles based security in Igniton Perspective. I followed the following steps.

  1. Configured the IDP
  2. Create Roles
  3. Added Users with Roles
  4. Added Security Levels (Match Roles)
  5. Added a button in Perspective
  6. Added an OnClick Event
  7. Enabled Security Settings in the Event (Slected one of the Security Levels previously created)
  8. Launched the client and logged in with a user that has the security level assigned ot the button.

When I try the button I keep receiving the message "Action Denied". If I run it in preview mode in designer it works.



Additional Media


Hmm. May be a bug worth reporting (to support). But most such things don't apply to click events on buttons, but only to the "actionPerformed" event. You should always use that event instead of a click event for maximum compatibility with touchscreens and alternate input methods.

Thanks for the feedback. I changed the event to actionPerformed. I get the same result but will consider the recommendation, and adopt it as a best practice, to configure those scripts in the actionPerformed event.