Announcement

Collapse
No announcement yet.

Duplicate orders - help!!!

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

    #16
    The form tags are in the overall layout for the checkout pages and is usually in the form NETQUOTEVAR:FORMBEGIN. This derives its values from 'Design | Text' click on 'Go To' and enter '2279' in the ID field.

    Kind regards,
    Bruce King
    SellerDeck

    Comment


      #17
      Thanks for that. This gives me this option:

      <FORM METHOD=NETQUOTEVAR:CGIMETHOD ACTION="NETQUOTEVAR:CGIURL" NETQUOTEVAR:ONSUBMIT>
      NETQUOTEVAR:HIDDENFIELDS
      I need to add this line of code to disable to button but where does it go?:

      onSubmit="document.getElementById(’uploadButton’).disabled=true;"
      I'm unsure if the code goes at the end of the code above or if I need to change the value for NETQUOTEVAR:ONSUBMIT.

      Also, is the reference to 'uploadButton' correct or do I need to rename the next button as 'uploadButton' at the checkout phase?
      Cheers
      Stuart

      Comment


        #18
        I would just try adding that code straight within that <form> tag code you've found (look at olderscot's post for an example of how this should look) and see if it works.
        Also, is the reference to 'uploadButton' correct or do I need to rename the next button as 'uploadButton' at the checkout phase?
        Just try adding
        Code:
         name="uploadButton" id="uploadButton"
        into the <input> tag for the Next button within Act_Order02.html

        Comment

        Working...
        X