Is it possible to specify fields to skip when republishing form data on a validation error like in v3?
Forums
Republish Skip
No, but you can unset the data in the "$form->data" array for the fields you don;t need, you can use a simple PHP code for that:
Regards,
Max
$skipped = array('field1', 'field2');
foreach($skipped as $skip){
unset($form->data[$skip]);
}
Regards,
Max
This topic is locked and no more replies can be posted.