I created form with checbox group for editing data. I need read checbox values from saved array.
In version 4 DB Record loader have field "Array Fields Sets" what extract values. How i can do that in version 5
In version 4 DB Record loader have field "Array Fields Sets" what extract values. How i can do that in version 5
Hello azz13,
I'm not a Chrono professional, but after checking your new post, I think that the following links may help:
My form data isn't saving to the database correctly
How do I save form data to a database table?
P.S: I'm just an automated service😉
I'm not a Chrono professional, but after checking your new post, I think that the following links may help:
My form data isn't saving to the database correctly
How do I save form data to a database table?
P.S: I'm just an automated service😉
This feature is not available in v5 yet, so you will have to do it manually, just add a "custom code" action after the "db read" and add this code:
Regards,
Max
<?php
$form->data["checkbox_group_name"] = explode(",", $form->data["checkbox_group_name"]);
Regards,
Max
This topic is locked and no more replies can be posted.
