Is possible to stop Save onBeforeMandatoryFormSave ?

Is possible to stop Save onBeforeMandatoryFormSave ?

Hi Team

   I need to stop the Save button on Mandatory Form, my client script is:

  1. nombre = ZDK.Page.getForm().getValues();
    log(JSON.stringify(nombre));

    var transObj = ZDK.Page.getBlueprintTransitions();


    var Transicion = transObj[0].getName();

    if (Transicion == 'Ingresar datos Presupuesto.') {

        var Tipo = ZDK.Page.getField("Tipo").getValue();
        var Prevision = ZDK.Page.getField("Previsi_n").getValue();

        if (Tipo == 'Particular Convenio') {
            ZDK.Page.getField("Tiene_Convenio").setValue('SI');
        } else if (Tipo == 'Isapre') {
            ZDK.Client.showMessage("No puede pasar a ISAPRE");
            return false;
        }

        log(Tipo);
        log(Prevision);
    }
I guess i need to return false, but when i run this code the save button dosen't stop, the big question is : 

How i can stop the save button on Mandatory Form 

Thanks in advance,
Pablo