Skip to main content
Nintex Community Menu Bar
Question

Suppress standard error messages in spark

  • July 11, 2024
  • 2 replies
  • 6 views

Forum|alt.badge.img+5

Hello

I am setting up a SF community using Skuid pages on api v2. Since customers will be using the page, I want to display a customer friendly error message whenever there is a server error on the SF side. It just has a general ‘Something went wrong’ message with our brand styling. I don’t want them to see something specific like ‘Contact process builder has failed’ that ignores the rest of the styling on the page. I’ve got that component set up and rendering correctly on model save errors.

Is there a way on Spark pages to supress the standard error messages? I know in regular skuid you can do it with css, but spark removed that functionality, and I’m not seeing anything related to error messages in the desgin system.

Is this something that we would be able to do?

Thanks!

This topic has been closed for replies.

2 replies

Forum|alt.badge.img+5

We figured this out. The class for error messages is not dynamic like the other components, so it can be targeted with css. To supress the error messages, add a text component to the very top of the page. In ‘advanced’ paste this:

.nx-page-problems-wrapper { display: none !important; }```


Forum|alt.badge.img+6

Thank you for sharing your solution, Joe!