I am trying to gain some understanding of Dolphin forms. The only info I can find on forms is the wiki for Dolphin 8 forms and some of that does not apply to Dolphin 7. I am working on a form and I used the following to set up to be able to add an additional selection.
'attrs' => array (
'multiplyable' => 'true',
'add_other' => 'false',
'add_text' => 'false',
),
'db' => array (
'pass' => 'Categories',
),
I could add a second select to the form; however, only the second select would be added to the database. What did I do wrong?
I could not figure this out from reading and examining existing code so I changed over to use a select_multiple type and it works, all selections are stored in the database. I just liked the cleaner look of the first method but working is what is desirable although I would like to learn why the first is not working. What am I missing with the first method.