Answers for "validacao de campo vazio Toastr js"

0

validacao de campo vazio Toastr js

//arquivo separados
let campos = [{value: this.date, label: "Data"}, {value: this.custo_valor, label: "Custo"}, {value: this.vei_id.id, label: "veículo"}, {value: this.tipo_id.id, label: "condutor"}, ]
        if(this.util.validacao(campos))
//Serviço(utilities)
public validacao(campos)
    {
        let retorno = true;
        campos.forEach((val, i)=>
        {
            if(!val.value)
            {
                this.toastr.warning("Preecha o campo " + val.label + "!");
                retorno = false;
            }
        });
        return retorno;
    }
Posted by: Guest on June-05-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language