Getting error "Item with name "Calendar_ListPage" not found"
Hi,
After upgrading Creatio from version 8.1.0 to 8.1.5, I encountered a strange issue. The first symptom is that the calendar stopped working and cannot be displayed at all. The browser console shows the following error: "Uncaught Error: Script error for 'Calendar_ListPage'." While analyzing the issue, I discovered that Calendar_ListPage is not registered in the Terrasoft.configuration.RootSchemaDescriptor object. However, the calendar can still be accessed through the designer.
Another, more serious problem is that performing any actions in the system has become very difficult. Attempting to save any view or object results in the following error:
Item with name "Calendar_ListPage" not found
I tried to resolve this issue, but in the meantime, I needed to create a new object. I created it through the application hub with the entire section. Then I attempted to rename it. From that moment, I started getting the same error message throughout the system, but this time related to the original name of my object.
I’m not sure if this is important, but the instance works at Linux and has enabled file design mode.
Like
Hello,
In version 8.1.1, the base page Calendar_FormPage was renamed to Calendar_ListPage in the product.
If you had overrides for this page in your custom packages, the override will not be renamed, which will cause a structure generation error, as the schema inheriting from another schema will now have a different name.
You need to check if there is a schema named Calendar_FormPage in your system. If such a schema exists, rename it to Calendar_ListPage and also update the Define
block in the page code accordingly.
Example:
Before
After
(Before this changes you need temporary clead SchemaNamePrefix system setting)
If the issue is not related to this, please contact our support team for assistance - support@creatio.com
Best regards,
Pavlo!
Hello, it works! Thank you very much :)
Is there any way to stay informed about such changes to avoid similar problems in the future? I didn’t find anything about this in the release notes.