Hello,
Validation works until the field is made clonable :
Below example does not work (the field is not required)
...
'rules' => array(
"test" => array(
'required' => true,
),
),
'fields' => array(
array(
'name' => 'Test',
'id' => 'vm_test',
'type' => 'text',
'clone' => true,
),
),
Can you fix this ?
Regards,