Announcement

Collapse
No announcement yet.

Delivery dropdown list

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

    Delivery dropdown list

    Good morning

    I am trying to implement the drop down list of countries that I deliver to onto my delivery information brochure page. This is not to perform any action except "for information only" (e.g. I don't what the list to be used to make a selection).

    Is it possible to extract the list from actinic a implement on a brochure page without causing any submit function to occur. Likewise I would like to keep the list automatically updated (e.g. if I add a new country option, the brochure page updates).

    Any advice appreciated.

    Paul
    KJ Beckett
    Men's Clothing & Accessories
    Cufflinks, Underwear, Ties, Grooming Products
    Bath, England
    Fast delivery to UK, USA and worldwide.
    Men's Fashion Blog

    #2
    Hi All

    I should add - I think that I should use NETQUOTEVAR:LOCATIONCOUNTRY within my brochure page which would give me the list of countries.

    I am just a little concerned about impacting the site in other ways. Providing I just add this list - and no submit button - will I be okay?

    Paul
    KJ Beckett
    Men's Clothing & Accessories
    Cufflinks, Underwear, Ties, Grooming Products
    Bath, England
    Fast delivery to UK, USA and worldwide.
    Men's Fashion Blog

    Comment


      #3
      I think that I should use NETQUOTEVAR:LOCATIONCOUNTRY within my brochure page
      Actually I dont know what to do!?! I have used the NETQUOTEVAR:LOCATIONCOUNTRY but the list is not displaying, only "NETQUOTEVAR:LOCATIONCOUNTRY".

      This is the code I have put in my brochure page:

      <tr>
      <td width="14%"><img name="worldwide" src="http://www.kjbeckett.com/acatalog/globe.jpg" width="131" height="71" alt="Worldwide Delivery by KJ Beckett"></td>
      <td width="86%">NETQUOTEVAR:LOCATIONCOUNTRY</td>
      </tr>
      Any advice appreciated!

      Paul
      KJ Beckett
      Men's Clothing & Accessories
      Cufflinks, Underwear, Ties, Grooming Products
      Bath, England
      Fast delivery to UK, USA and worldwide.
      Men's Fashion Blog

      Comment


        #4
        I think NETQUOTEVAR:LOCATIONCOUNTRY is one of those NQVs that only work in catalog pages. Although it would be good to link it, If you don't expect it to change often then maybe just hard code it instead.

        Comment


          #5
          Thanks for your help!

          Typical...I had a feeling that this would be the case.I will just hardcode it instead.

          I have quickly grabed the country list from off the web and tweaked the code to look like this:

          <td width="33%" align="RIGHT"> <SELECT ID="lstDeliveryCountryInfoOnly" NAME="LocationDeliveryCountryInfoOnly">
          <OPTION VALUE="">View Countries
          <OPTION VALUE="">United Kingdom
          <OPTION VALUE="">Channel Islands
          <OPTION VALUE="">United States
          <OPTION VALUE="">Canada
          <OPTION VALUE="">Andorra
          <OPTION VALUE="">Australia
          <OPTION VALUE="">Austria
          <OPTION VALUE="">China
          <OPTION VALUE="">Denmark
          <OPTION VALUE="">Faroe Islands
          <OPTION VALUE="">Finland
          <OPTION VALUE="">France
          <OPTION VALUE="">Germany
          <OPTION VALUE="">Hong Kong
          <OPTION VALUE="">Iceland
          <OPTION VALUE="">Ireland
          <OPTION VALUE="">Italy
          <OPTION VALUE="">Japan
          <OPTION VALUE="">Korea (South)
          <OPTION VALUE="">Liechtenstein
          <OPTION VALUE="">Mexico
          <OPTION VALUE="">Monaco
          <OPTION VALUE="">Netherlands
          <OPTION VALUE="">New Zealand (Aotearoa)
          <OPTION VALUE="">Norway
          <OPTION VALUE="">Portugal
          <OPTION VALUE="">Singapore
          <OPTION VALUE="">Slovak Republic
          <OPTION VALUE="">South Africa
          <OPTION VALUE="">Spain
          <OPTION VALUE="">Sweden
          <OPTION VALUE="">Switzerland
          </SELECT>
          </td>
          This is a info only dropdown list but I think I still use <SELECT> and <OPTION VALUE> ?

          Paul
          KJ Beckett
          Men's Clothing & Accessories
          Cufflinks, Underwear, Ties, Grooming Products
          Bath, England
          Fast delivery to UK, USA and worldwide.
          Men's Fashion Blog

          Comment

          Working...
          X