Hi guys,
The multiplier-function works great. But I‘d like to display the first element, so people can start typing right away.
If I leave the display of the first element in the multiplier container on and I look at the debugger after submitting the form, the array containing the elements starts with the replacer ('__N__') and not [0]. Why is that and how can I change that, so the array starts with [0] ?
Thanks,
Timo
The multiplier-function works great. But I‘d like to display the first element, so people can start typing right away.
If I leave the display of the first element in the multiplier container on and I look at the debugger after submitting the form, the array containing the elements starts with the replacer ('__N__') and not [0]. Why is that and how can I change that, so the array starts with [0] ?
Array
(
[__N__] => Array
(
[gender] => Frau
[name] => silke
[info] => Array
(
[0] => Betriebsrat
)
)
[0] => Array
(
[gender] => Herr
[name] => timo
[info] => Array
(
[0] => Gewerkschaftsmitglied
)
)
)
Thanks,
Timo
This topic is locked and no more replies can be posted.