Hey,
I have a form that contains a set of check boxes.
Here is the code of the two sets:
So with the Checkboxes - the user can check as many options as they want.
NOW - what's the problem?
IN THE FORM the client gets - the options are not formatted - they are just a sloppy line of responses:
Site Selection, Site Planning and Utilization Analysis, Feasibility Studies, Financing and Procurement of Government Incentives, Valuation Analysis, Code Compliance, Zoning Liason and Permitting, Environmental Assessment and Remediation, Demolition/Construction, Brokerage and Property Management
I would LIKE the return form to show the responses to the client in list form like this:
Site Selection
Site Planning and Utilization Analysis
Feasibility Studies
Financing and Procurement of Government Incentives
Valuation Analysis
Code Compliance
etc.
BUT I don't know how to format the form responses in that manner. Is it possible?
Thanks!
I have a form that contains a set of check boxes.
Here is the code of the two sets:
<div class="form_item">
<div class="form_element cf_checkbox">
<label class="cf_label" style="width: 150px;">Properties of Interest:</label>
<div class="float_left">
<input value="Site Selection" title="" class="radio" id="check10" name="check1[]" type="checkbox" />
<label for="check10" class="check_label">Site Selection</label>
<br />
<input value="Site Planning and Utilization Analysis" title="" class="radio" id="check11" name="check1[]" type="checkbox" />
<label for="check11" class="check_label">Site Planning and Utilization Analysis</label>
<br />
<input value="Feasibility Studies" title="" class="radio" id="check12" name="check1[]" type="checkbox" />
<label for="check12" class="check_label">Feasibility Studies</label>
<br />
<input value="Financing and Procurement of Government Incentives" title="" class="radio" id="check13" name="check1[]" type="checkbox" />
<label for="check13" class="check_label">Financing and Procurement of Government Incentives</label>
<br />
<input value="Valuation Analysis" title="" class="radio" id="check14" name="check1[]" type="checkbox" />
<label for="check14" class="check_label">Valuation Analysis</label>
<br />
<input value="Code Compliance" title="" class="radio" id="check15" name="check1[]" type="checkbox" />
<label for="check15" class="check_label">Code Compliance</label>
<br />
<input value="Zoning Liason and Permitting" title="" class="radio" id="check16" name="check1[]" type="checkbox" />
<label for="check16" class="check_label">Zoning Liason and Permitting</label>
<br />
<input value="Environmental Assessment and Remediation" title="" class="radio" id="check17" name="check1[]" type="checkbox" />
<label for="check17" class="check_label">Environmental Assessment and Remediation</label>
<br />
<input value="Demolition/Construction" title="" class="radio" id="check18" name="check1[]" type="checkbox" />
<label for="check18" class="check_label">Demolition/Construction</label>
<br />
<input value="Brokerage and Property Management" title="" class="radio" id="check19" name="check1[]" type="checkbox" />
<label for="check19" class="check_label">Brokerage and Property Management</label>
<br />
</div>
</div>
So with the Checkboxes - the user can check as many options as they want.
NOW - what's the problem?
IN THE FORM the client gets - the options are not formatted - they are just a sloppy line of responses:
Site Selection, Site Planning and Utilization Analysis, Feasibility Studies, Financing and Procurement of Government Incentives, Valuation Analysis, Code Compliance, Zoning Liason and Permitting, Environmental Assessment and Remediation, Demolition/Construction, Brokerage and Property Management
I would LIKE the return form to show the responses to the client in list form like this:
Site Selection
Site Planning and Utilization Analysis
Feasibility Studies
Financing and Procurement of Government Incentives
Valuation Analysis
Code Compliance
etc.
BUT I don't know how to format the form responses in that manner. Is it possible?
Thanks!
This topic is locked and no more replies can be posted.
