Hi,
after searching the forum I am stuck:
I have the link to a chronoform:
I would like to pass some variables to the form from a link in the prior page like price=1 price=2 price=3
then form should select/populate a drop-down value depending on the price variable.
so in case of price=3 the third option should be selected when the form is called.
if I use %3Fprice%3D3 to have ?price=3 in the URl I get "There is no form with this name or may be the form is unpublished, Please check the form and the url and the form management".
Also how would I pass the variable 3 to the dropdown so the value is selected depending on the variable?
after searching the forum I am stuck:
I have the link to a chronoform:
index.php?option=com_chronocontact&chronoformname=enterpriseQuote
I would like to pass some variables to the form from a link in the prior page like price=1 price=2 price=3
index.php?option=com_chronocontact&chronoformname=enterpriseQuote?price=3
then form should select/populate a drop-down value depending on the price variable.
<option value="">Choose Option</option>
<option value="Enterprise price 1">Enterprise price 1</option>
<option value="Enterprise price 2">Enterprise price 2</option>
<option value="Enterprise price 3">Enterprise price 3</option>
so in case of price=3 the third option should be selected when the form is called.
if I use %3Fprice%3D3 to have ?price=3 in the URl I get "There is no form with this name or may be the form is unpublished, Please check the form and the url and the form management".
Also how would I pass the variable 3 to the dropdown so the value is selected depending on the variable?