Hi crew..
It's possibleto fille a textbox area with the choice made in a dropdown element??
I try to explain better..
I've a dropdown (multiselect) element (id=> dropdown) filled with data from db table.
Tha data in dropdown is like
value - - - Option
1 case 1
2 case 2
3 case 3
etc etc..
I also have a text area element (id=>textarea) which is empty.
I would like (if possible) to fill this textarea with the dropdown multiselection
eg
case 1
case 3
So.. I think to use an ACTION named prova with a custom element with the php code
and set in dropdown element an EVENTS like
[!=] [] [set dynamic option] [textarea] [prova]
but.. obviously.. it soes not work...
ho can i do??
Regards and thank's
It's possibleto fille a textbox area with the choice made in a dropdown element??
I try to explain better..
I've a dropdown (multiselect) element (id=> dropdown) filled with data from db table.
Tha data in dropdown is like
value - - - Option
1 case 1
2 case 2
3 case 3
etc etc..
I also have a text area element (id=>textarea) which is empty.
I would like (if possible) to fill this textarea with the dropdown multiselection
eg
case 1
case 3
So.. I think to use an ACTION named prova with a custom element with the php code
<?php
$form->data["textarea"] = $form->data["dropdown"];
?>
and set in dropdown element an EVENTS like
[!=] [] [set dynamic option] [textarea] [prova]
but.. obviously.. it soes not work...
ho can i do??
Regards and thank's