954,576 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

Form select Data to HTML Template

Hi,

I have a calculating order form, which is at
http://www.bcdcoatings.com/orderform.htm which I partially inherited.

The problem is that the second drop down "select item" was added, and is not part of the calculation, in order to get needed information to an html template for emailing the order information.


Right now it is possible to have the "widget" choice be the wrong one (not corresponding with the select size choice,) in that you could have a "widget1" show up at the price of a "widget2" which is not good.


Is there a way to report two values, or another value of information from the 3rd drop down? This would eliminate the need for the second.

OR how do I require the second drop down "select item" selection is made, and it corresponds to the proper selection in the third "select size."

All of the lines can not be required though, as the user may not be ordering more than one item.

Obviously I'm not a programmer, I am actually a hardware/network tech. This is in my lap to deal with though.

Any help is appreciated.
Thanks

cooterbrown
Newbie Poster
10 posts since May 2009
Reputation Points: 10
Solved Threads: 0
 

You are using JavaScript to do your calculations, so I guess you should try JavaScript/DHTML/AJAX section for a help.

Daiva
Light Poster
37 posts since May 2009
Reputation Points: 14
Solved Threads: 9
 

The added has no part in the calculation, its values are all text, so the code where changing the text chanes recalculates the form is not enough
changing the text select item is supposed to change the price values in the size there needs to be another javascript to do so
something like

<TD style="height: 28px; width: 120px;">
<SELECT onChange="populate("price2");calculate();" name="item2" style="width: 133px">
<OPTION value="widget1">widget 1
<OPTION value="widget2">widget 2
<!--snip-->
</SELECT></TD>


where populate() is a javascript that populates the s named this link goes to one available for download, might give you an insight into the code you require

almostbob
Posting Sensei
3,149 posts since Jan 2009
Reputation Points: 571
Solved Threads: 376
 
You are using JavaScript to do your calculations, so I guess you should try JavaScript/DHTML/AJAX section for a help.

Thanks Daiva for your reply. I simply do not know where the solution is, so I posted it here hoping for a clue.

Thanks again.
Cooter

cooterbrown
Newbie Poster
10 posts since May 2009
Reputation Points: 10
Solved Threads: 0
 

The added has no part in the calculation, its values are all text, so the code where changing the text chanes recalculates the form is not enough changing the text select item is supposed to change the price values in the size there needs to be another javascript to do so something like

<TD style="height: 28px; width: 120px;">
<SELECT onChange="populate("price2");calculate();" name="item2" style="width: 133px">
<OPTION value="widget1">widget 1
<OPTION value="widget2">widget 2
<!--snip-->
</SELECT></TD>
where populate() is a javascript that populates the s named this link goes to one available for download, might give you an insight into the code you require

Thank you almostbob, I greatly appreciate the nudge in the right direction. I'll work on this and post back. Now I'm becoming interested in programming....

Cooter

cooterbrown
Newbie Poster
10 posts since May 2009
Reputation Points: 10
Solved Threads: 0
 

almostbob...
No progress yet, but I am taking an online javascript course. At least I see what you mean by "something like" your example.. Javascript is very versatile and flexible.
Thanks again.

cooterbrown
Newbie Poster
10 posts since May 2009
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You