Customized pages lost after upgrade to v9
Any hints as to what I may be overlooking ?
Stephane
Best Answer
-
Stephane_Bouillon Customer Advanced IT Monkey ✭✭✭Hi, Cireson support helped me debug this problem, and it was caused by a syntax change
$(window).load(function() { ... })
is no longer valid, and has to be replaced by
$(window).on('load', function() { ... })
everything below that instruction in my custom.js was ignored.
0
Answers
Can't think of anything. Have you cleared cache etc?
Are we talking about a form customisation here such as Incident.js
Are these files still in CustomSpace (they get moved out and back during upgrade)
Any errors in the browser?
Geoff
I did not change anything in our custom.js file, but our homepage now looks like this:
The debugger shows the following messages in the console:
I contacted Cireson support, and their response was "It appears the customisation is loaded, but it hasn't been updated for the new version."
I guess I could redo my custom.js customisations, but I don't know which file I have to take as a starting point.
I did not change anything in our custom.js file, but our homepage now looks like this:
The debugger shows the following messages in the console:
I contacted Cireson support, and their response was "It appears the customisation is loaded, but it hasn't been updated for the new version."
I guess I could redo my custom.js customisations, but I don't know which file I have to take as a starting point.
Below is my code (sorry I'm not allowed to add it as an attachment)
$(window).load(function() { ... })
is no longer valid, and has to be replaced by
$(window).on('load', function() { ... })
everything below that instruction in my custom.js was ignored.