Announcement

Collapse
No announcement yet.

Drop down boxes in ACT_ORDER02

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Drop down boxes in ACT_ORDER02

    Hello I a little problem with my drop down boxes in ACT_ORDER02. (please see attachment).
    They do not seem to work correctly, I get wrong information under wrong heading or it miss's a field completely. The url field works correctly all the time. can anyone see anything wrong with the code?

    <table border="0" width="CUSTOMVAR:ACTSTDWIDTH" cellspacing="2" cellpadding="3">
    NETQUOTEDEL:GENERALPROMPT000

    <TR>
    <td bgcolor="NETQUOTEVAR:CHECKOUTBG"><FONT FACE="ARIAL" SIZE="2">NETQUOTEVAR:GENERALPROMPT000</FONT></TD>
    <td bgcolor="NETQUOTEVAR:CHECKOUTBG"><FONT FACE="ARIAL" SIZE="2">
    <SELECT NAME="GENERALHOWFOUND"> <OPTION SELECTED>Please select:
    <OPTION VALUE="The Wholesaler">The Wholesaler
    <OPTION VALUE="Google">Google
    <OPTION VALUE="Yahoo">Yahoo
    <OPTION VALUE="MSN">MSN
    <OPTION VALUE="Other Search Engine">Other Search Engine
    <OPTION VALUE="Other Directory">Other Directory
    <OPTION VALUE="Recommendation">Recommendation
    <OPTION VALUE="Other">Other (please state below)
    </SELECT>
    </FONT></TD>
    </TR>

    <tr>
    <!-- Use the HTML below to have a drop-down for the 'How did you find our site?' -->
    <td bgcolor="NETQUOTEVAR:CHECKOUTBG">NETQUOTEVAR:GENERALPROMPT000</td>
    <td bgcolor="NETQUOTEVAR:CHECKOUTBG">
    <input type="TEXT" name="GENERALHOWFOUND" size="40" maxlength="255" value="NETQUOTEVAR:GENERALHOWFOUND">
    </td>
    </tr>
    <TR>
    <td bgcolor="NETQUOTEVAR:CHECKOUTBG"><FONT FACE="ARIAL" SIZE="2">NETQUOTEVAR:GENERALPROMPT001</FONT></TD>
    <td bgcolor="NETQUOTEVAR:CHECKOUTBG"><FONT FACE="ARIAL" SIZE="2">
    <SELECT NAME="GENERALHOWFOUND"> <OPTION SELECTED>Please select:
    <OPTION VALUE="High Street Retailer">High Street Retailer
    <OPTION VALUE="Online Retailer">Online Retailer
    <OPTION VALUE="Gift Shop">Gift Shop
    <OPTION VALUE="party planner">Party Planner
    <OPTION VALUE="wholesaler">Wholesaler
    <OPTION VALUE="Market Trader">Market Trader
    <OPTION VALUE="Jeweller">Jeweller
    <OPTION VALUE="Craft Fairs">Craft Fairs
    <OPTION VALUE="Other">Other (please state below)
    </SELECT>
    </FONT></TD>
    </TR>




    NETQUOTEDEL:GENERALPROMPT000
    NETQUOTEDEL:GENERALPROMPT001
    <tr>

    <td bgcolor="NETQUOTEVAR:CHECKOUTBG">NETQUOTEVAR:GENERALPROMPT001</td>
    <td bgcolor="NETQUOTEVAR:CHECKOUTBG">
    <input type="TEXT" name="GENERALWHYBUY" size="40" maxlength="255" value="NETQUOTEVAR:GENERALWHYBUY">
    </td>
    </tr>
    NETQUOTEDEL:GENERALPROMPT001
    NETQUOTEDEL:GENERALPROMPT002
    <tr>

    <td bgcolor="NETQUOTEVAR:CHECKOUTBG">NETQUOTEVAR:GENERALPROMPT002</td>
    <td bgcolor="NETQUOTEVAR:CHECKOUTBG">
    <input type="TEXT" name="GENERALUSERDEFINED" size="40" maxlength="255" value="NETQUOTEVAR:GENERALUSERDEFINED">
    </td>
    </tr>
    </table>
    Please complete all fields, any fields left blank will delay your account being processed while we verify your details
    Attached Files
    Regards
    Rob
    ILUVM Wholesale Silver Jewellery
    http://www.iluvm.co.uk
    http://www.the-free-directory.co.uk

    #2
    You have 2 inputs called the same thing : GENERALHOWFOUND

    Naturally only one can hold a valid input at any one time.

    Mike
    -----------------------------------------

    First Tackle - Fly Fishing and Game Angling

    -----------------------------------------

    Comment


      #3
      Drop Down box's

      Hello thanks for the info,
      So to get these to work correctly I pressume I need to create two new User Definable fields? e.g "GENERALHOWFOUND1" & "GENERALWHYBUY1"
      I know the User Definable fields are in
      Design > Text > Website (cont) > General info
      Can I create new User Definable fields? as there are only three User Definable fields and I have used them already?
      Regards
      Rob
      ILUVM Wholesale Silver Jewellery
      http://www.iluvm.co.uk
      http://www.the-free-directory.co.uk

      Comment


        #4
        Can I create new User Definable fields? as there are only three User Definable fields and I have used them already?
        Afraid not. However it woudn't be hard (if you know JavaScript) to have a single hidden field for one or more of these existing prompts and to have lots of drop-down's, each one using it's onchange event to populate the hidden field with the collected results from the drop-downs.

        This way you'd be packing several responses into a single Actinic field.
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment


          #5
          Drop down boxes

          Thank you Norman,
          I'm afraid I'm not to up on javascript, but at least I know now. I've commented out the text fields and made the drop down boxes a bit more comprehensive. I've found that most customers are a bit reluctant to type a few words in a text box but will use the drop down boxes.
          Thanks for the help.
          Regards
          Rob
          ILUVM Wholesale Silver Jewellery
          http://www.iluvm.co.uk
          http://www.the-free-directory.co.uk

          Comment

          Working...
          X