Announcement

Collapse
No announcement yet.

Help !! Additional Popup window.

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

    Help !! Additional Popup window.

    Help !! Additional Popup window.
    I am having trouble with this, the javscript opens the popup fine but the main catalogue page goes blank apart from the word "false" and javascript:ShowPopUp('2012ColourChart700.png', 700,722); appears in the web page address line.
    The code I am using is inserted in the Product layout, based on "Creating Additional Popup windows" in adv user guide.
    <actinic:block if="%3cactinic%3avariable%20name%3d%22ShowSecondPopUp%22%20%2f%3e"><actinic:variable name="AltInformationPage" />
    <br/><a href="javascript:ShowPopUp('ColoutChartActinic/2012ColourChart700.png', 700,722);"><img src="Button/Information.gif" border="0");"></a></actinic:block>
    Can anyone advise? many thanks Dave

    #2
    Is there a typo in this bit:

    ('ColoutChartActinic/2012ColourChart700.png', 700,722)
    Reusable Snore Earplugs : Sample Earplugs - Wax Earplugs - Women's Earplugs - Children's Earplugs - Music Earplugs - Sleep Masks

    Comment


      #3
      Actinic have changed the way the popup routine works. Try:
      Code:
      <actinic:block if="%3cactinic%3avariable%20name%3d%22ShowSecondPopUp%22%20%2f%3e">
        <actinic:variable name="AltInformationPage" />
        <br/>
        <a href="#" target="ActPopup" onclick="return ShowPopUp('ColoutChartActinic/2012ColourChart700.png', 700,722)" >
          <img src="Button/Information.gif" border="0");">
        </a>
      </actinic:block>
      And also check whether you intend to have ColoutChartActinic.
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment


        #4
        Works a Treat

        Works perfectly

        Many thanks

        Comment

        Working...
        X