I came across the following doubt.
I'm using jQuery Validation Plugin v1.13.0 to validate my client-side form.
It's working, right.
Plus the problem I can not solve is I have a field named produto[]
, which is an array that sends several fields with that name. I can send 1 as I can send 20 products.
data_emissao: {required: true},
forma_pagamento: {required: true},
produto[]: {required: true}, // coloquei assim mais sem sucesso.
Has anyone ever encountered this problem?