Make a Field Mandatory when user clicks on Retire Button for Knowledge Articles in Workspace

21121A3359
Tera Expert
 
1 REPLY 1

yashkamde
Mega Sage

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.