Problem
Settings applied to the Content View based controls (News View, Events View, Blog Posts and Image Gallery) are reset after application restart. They are saved in the control property configurators but are not applied to the control on application start.
Solution
Add the highligted lines i
n the Global.asax file, located in your application root folder:
| void Application_Start(object sender, EventArgs e) |
| { |
| // Code that runs on application startup |
| Telerik.Cms.Engine.WebControls.Design.Settings.ContentSetting dummyContent = new Telerik.Cms.Engine.WebControls.Design.Settings.ContentSetting(); |
| Telerik.Cms.Engine.WebControls.Design.Settings.TextSetting dummyText = new Telerik.Cms.Engine.WebControls.Design.Settings.TextSetting(); |
} |
|