Make a Field Mandatory when user clicks on Retire Button for Knowledge Articles in Workspace
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 hours ago
Hello @21121A3359 ,
In your UI Action Add this script :
function onClick() {
var mandatoryField = g_form.getValue('u_retire_reason');
if (!mandatoryField) {
g_form.showFieldMsg('u_retire_reason', 'Please provide a reason before retiring.', 'error');
return false; // Prevent Retire action
}
return true;
}
If my response helped mark as helpful and accept the solution.