Announcement

Collapse
No announcement yet.

Extended Info Link Not Working

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

    Extended Info Link Not Working

    I've put Extended Info links on my site. However they do not appear to be working...

    I've searched the forum for a solution but only come up with cases where people have imported data into Actinic... I've been putting the info in manually.

    From what I understand this is a bug... can someone explain the work around, I jut seem to be going around in circles and gettin no where.

    #2
    The serving suggestion links on that page seem to work for me (IE7). However I see that your main page always refreshes after the popup opens. This is because you've removed the onload="....." code from the <body ...> tag in your overall layout. You are using some custom onload code. You can fix this by changing

    function SymOnLoad()
    {
    if(SymRealOnLoad != null)

    to

    function SymOnLoad()
    {
    bPageIsLoaded=true;
    if(SymRealOnLoad != null)
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Thanks Norman,

      Have deleted the rogue piece of code and now it is working for me too.

      Comment

      Working...
      X