How to remove "Error Alert" from Workspace Form
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2025 12:43 AM
Hi All,
We are working on the workspace and have made some fields mandatory. Everything is functioning as expected. However, there is a difference between the alert behavior in the native view and the workspace view.
In Workspace view the alert showing like this: Here, we need to remove "Error Alert" from workspace. Please suggest me where I need to change this particular area.
Logappradeep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2025 08:56 AM
Hi @Logappradeep ,
try below steps :
1, Customize Client Script (View Rule or Validation Logic)
If you’re triggering the alert via a Client Script or Validation, check if the error message is being explicitly defined. You might find a line like:
g_form.showFieldMsg('bank', 'Error Alert The following mandatory fields are not filled in: bank', 'error');
Modify this to remove "Error Alert":
g_form.showFieldMsg('bank', 'The following mandatory fields are not filled in: bank', 'error');
If my response helped, please hit the 👍Thumb Icon and accept the solution so that it benefits future readers.
Regards,
Pratik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2025 11:59 PM
I haven't configured any scripts; it's the default script. I just need to remove the alert in the workspace, not in the native view
Logappradeep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2025 08:12 AM