Hi.
I am Italian. You excuse my English๐
I everything wanted, to thank you for this splendid component. it is also the more profit and the simplest for the one that is not practical of computer languages.
I am trying to create some dropdown menu that appears to the consumer after the choice of an option from a dropdown menu "father."
In practice I was realizing a form with chronoforms that contained some dropdown menu that depended and they appeared according to the choice served as a drop menu "father."
Every choice in the menu "father" it provokes downward a spatial move some menu child correspondent.
In practice the first menu child of the first choice derived by the menu father appears, immediately under to the menu father. The second menu child of the second instead choice doesn't go to occupy (as I would want) the position of the menu child of the first choice, but, it immediately appears under the hypothetical position of the first menu child that, naturally it is not visible, because we have operated the second chosen by the menu father. And so street for the following choices. More they are the options of the principal menu and more the corresponding menus move downward him.
This is the wrong code that I use:
Could you tell me as to modify it to resolve this problem?
Thanks for your consideration ๐
Nik
I am Italian. You excuse my English๐
I everything wanted, to thank you for this splendid component. it is also the more profit and the simplest for the one that is not practical of computer languages.
I am trying to create some dropdown menu that appears to the consumer after the choice of an option from a dropdown menu "father."
In practice I was realizing a form with chronoforms that contained some dropdown menu that depended and they appeared according to the choice served as a drop menu "father."
Every choice in the menu "father" it provokes downward a spatial move some menu child correspondent.
In practice the first menu child of the first choice derived by the menu father appears, immediately under to the menu father. The second menu child of the second instead choice doesn't go to occupy (as I would want) the position of the menu child of the first choice, but, it immediately appears under the hypothetical position of the first menu child that, naturally it is not visible, because we have operated the second chosen by the menu father. And so street for the following choices. More they are the options of the principal menu and more the corresponding menus move downward him.
This is the wrong code that I use:
<div class="form_item">
<div class="form_element cf_dropdown">
<label class="cf_label" style="width: 100px;">Arcidiocesi</label>
<select class="cf_inputbox validate-selection" id="select_1" size="1" title="" name="dropdown">
<option value="option 1" rel="none">Seleziona</option>
<option value="option 2"rel="risultato visibile1">Aquileia</option>
<option value="option 3" rel="risultato visibile2">Genova</option>
<option value="option 4" rel="risultato visibile3">Milano</option>
</select>
</div>
<div class="cfclear">ย </div>
</div>
<div class="form_item">
<div class="form_element cf_dropdown">
<div rel="risultato visibile1">
<label class="cf_label" style="width: 150px;">Diocesi Battesimo</label>
<select class="cf_inputbox validate-selection" id="select_4" size="1" title="" name="dioaqui">
<option value="">Seleziona</option>
<option value="Venezia">Venezia</option>
<option value="Padova">Padova</option>
<option value="Parenzo">Parenzo</option>
<option value="Pola">Pola</option>
<option value="Portogruaro">Portogruaro</option>
<option value="Treviso">Treviso</option>
<option value="Mantua">Mantua</option>
<option value="Udine">Udine</option>
</select>
</div>
<div class="cfclear">ย </div>
</div>
<div class="form_item">
<div class="form_element cf_dropdown">
<div rel="risultato visibile2">
<label class="cf_label" style="width: 150px;">Diocesi Battesimo</label>
<select class="cf_inputbox validate-selection" id="select_5" size="1" title="" name="diogen">
<option value="">Seleziona</option>
<option value="Genova">Genova</option>
<option value="Chiavari">Chiavari</option>
<option value="La Spezia">La Spezia</option>
<option value="Albenga">Albenga</option>
<option value="Ventimiglia">Ventimiglia</option>
</select>
</div>
<div class="cfclear">ย </div>
</div>
<div class="form_item">
<div class="form_element cf_dropdown">
<div rel="risultato visibile3">
<label class="cf_label" style="width: 150px;">Diocesi Battesimo</label>
<select class="cf_inputbox validate-selection" id="select_6" size="1" title="" name="diomil">
<option value="">Seleziona</option>
<option value="Milano">Milano</option>
<option value="Como">Como</option>
<option value="Lodi">Lodi</option>
<option value="Alessandria">Alessandria</option>
<option value="Novara">Novara</option>
<option value="Savona">Savona</option>
<option value="Pavia">Pavia</option>
Could you tell me as to modify it to resolve this problem?
Thanks for your consideration ๐
Nik