Hi,
I've just started playing around with v10 on my windows7 machine.
I have been playing with the themes.. have been using Clean Layout13.
I havent made any big changes, in fact I've only been adjusting (slightly);
Web page outer layout : Two header bars- Two sidebars -Horz Nav Bar
This is confirmed by looking at the Library ; 'highlight edited library layouts'
The last time I closed the program everything was fine, however on opening actinic today I am presented with the red 'click here to see errors' button.
The errors say;
The 'RTSProductsInThisSection' variable has been placed within the 'Javascript Section Stock Query' layout, but it wont work there. Click here to get the code.
and
THe 'RTSStocksInThisSection' variable has been placed withih the 'Javascript Section Stock Query' layout, but it wont work there. Click here to go to the code.
If I click, I can see that the variable is indeed there in the Javascript Section Stock Query code. However I didnt put it there.. but it looks like it should be there anyway.
So does anyone know what this is all about?
Of course (s*ds law)... telephone support ran out for me a few days ago.
I suppose I could raise a ticket but thought I'd ask here first.
I've just started playing around with v10 on my windows7 machine.
I have been playing with the themes.. have been using Clean Layout13.
I havent made any big changes, in fact I've only been adjusting (slightly);
Web page outer layout : Two header bars- Two sidebars -Horz Nav Bar
This is confirmed by looking at the Library ; 'highlight edited library layouts'
The last time I closed the program everything was fine, however on opening actinic today I am presented with the red 'click here to see errors' button.
The errors say;
The 'RTSProductsInThisSection' variable has been placed within the 'Javascript Section Stock Query' layout, but it wont work there. Click here to get the code.
and
THe 'RTSStocksInThisSection' variable has been placed withih the 'Javascript Section Stock Query' layout, but it wont work there. Click here to go to the code.
If I click, I can see that the variable is indeed there in the Javascript Section Stock Query code. However I didnt put it there.. but it looks like it should be there anyway.
Code:
<actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Section%22" > <actinic:block if="%3cactinic%3avariable%20name%3d%22RealTimeStockEnabled%22%20%2f%3e%20%26%26%20%3cactinic%3avariable%20name%3d%22DisplayRealStockLevel%22%20%2f%3e" > <script language="javascript" type="text/javascript"> function displayStock() { var sProdRefs = ""; var sStockList = ""; <actinic:block if="%3cactinic%3avariable%20name%3d%22IsPreviewMode%22%20%2f%3e" > sProdRefs = "<actinic:variable name="RTSProductsInThisSection" selectable="false" />"; sStockList = "<actinic:variable name="RTSStocksInThisSection" selectable="false" />"; </actinic:block> <actinic:block if="%3cactinic%3avariable%20name%3d%22IsHostMode%22%20%2f%3e"> getSectionStock('<actinic:variable name="StockScriptCGIURL" selectable="false" />', '<actinic:variable name="SectionID" selectable="false" />', sProdRefs, sStockList, '<actinic:variable name="ShopID" selectable="false" />'); </actinic:block> <actinic:block if="%21%3cactinic%3avariable%20name%3d%22IsHostMode%22%20%2f%3e" > getSectionStock('<actinic:variable name="StockScriptCGIURL" selectable="false" />', '<actinic:variable name="SectionID" selectable="false" />', sProdRefs, sStockList, ''); </actinic:block> } AttachEvent(window, "load", displayStock); </script> </actinic:block> </actinic:block>
Of course (s*ds law)... telephone support ran out for me a few days ago.
I suppose I could raise a ticket but thought I'd ask here first.
Comment