Sorry but i want to know if possible with ChronoForm to do a Ajax Price estimate FORM like this "Preventivo di stampa" in:
<!-- w --><a class="postlink" href="http://www.ilmiolibro.it">www.ilmiolibro.it</a><!-- w -->
Thanks in advance
<!-- w --><a class="postlink" href="http://www.ilmiolibro.it">www.ilmiolibro.it</a><!-- w -->
Thanks in advance
Hi winesalento,
Yes that could be done. I don't see any Ajax and the form doesn't work for me but you could do something similar.
Bob
Yes that could be done. I don't see any Ajax and the form doesn't work for me but you could do something similar.
Bob
Hi GreyHead and thanks for your quick response,
please coul you indicate me any example of preconfigurated or generalistic form to begin my work?
thanks again
please coul you indicate me any example of preconfigurated or generalistic form to begin my work?
thanks again
Hi winesalento.
Try this in the form html
Bob
Try this in the form html
<!-- -->
<div class="headLine3">Preventivo di stampa</div>
<div class="headText">Scopri quanto costa stampare il tuo libro</div>
<!-- -->
<div class="headText">Tipo:<br />
<select name="tipo" id="idtipo" class="formItem" \>
<option value="Libro">Libro</option>
<option value="Tesi">Tesi</option>
<option value="Catalogo">Catalogo commerciale</option>
<option value="Agenda">Agenda</option>
<option value="Bilancio">Bilancio aziendale</option>
</select>
</div>
<div class="headText">Supporto:<br />
<select name="copertina" id="copertina" class="formItem">
<option value="morbida">Copertina morbida</option>
<option value="rigida">Copertina rigida</option>
<option value="rigidaSov">Rigida Sovraccoperta</option>
</select>
</div>
<!-- -->
<div class="headText">Contenuti:<br />
<select name="stampa" id="stampa" class="formItem" onChange="colore();">
<option value="bn">In bianco e nero</option>
<option value="colore">a colori</option>
</select>
</div>
<!-- -->
<!-- -->
<div class="headText" id="Selectformatolato">Formato: (<a href="creaestampa.asp">Vedi formati</a>)<br />
<select name="formato" id="formato" class="formItem" >
<option value="15x23">Romanzo 150x230mm</option>
<option value="21x29,7">A4 205x285mm</option>
<option value="12x18">Tascabile 114x172mm</option>
</select>
</div>
<!-- -->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<div class="headText">Pagine:<br />
<input name="foliazione" type="text" id="foliazione" size="5" class="formItem" />
</div>
</td>
<td>
<div class="headText">Copie:<br />
<input name="tiratura" type="text" id="tiratura" size="5" class="formItem" onclick="calcola()"/>
</div>
</td>
</tr>
</table>
<!-- -->
<div class="headText" id="preventivoRisultato">
Preventivo: (Iva inclusa)<br />
<img src="images/boxGray_linkBullet.gif" onclick="calcola()" onMouseOver="cellaOver(this);" style="vertical-align: top;"/>
<input type="text" name="campo" id="campo" class="resultBox" style="width: 100px;"/>
<div class="headText"></div>
</div>
The form JavaScript is on the site in previntivo_ajax.js so You'll need to make something like that work with it. I still don't see what the AJAX part is doing.Bob
Hi winesalento, you will remove the numbers from the above code of course😉
Cheers
Max
Cheers
Max
This topic is locked and no more replies can be posted.