November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Hi,
I never use it, but you could try to use FullRefreshPropertiesMetaData control.
In OnLoad event add all properties that should refresh the content:
protected override void OnLoad(System.EventArgs e) { base.OnLoad(e); this.EditHints.AddFullRefreshFor(p=>p.UniqueSellingPoints); }
Then place the control on you form template:
<EPiServer:FullRefreshPropertiesMetaData runat="server" />
The control will read all properties registered in AddFullRefreshFor method.
Hi, I'm working on an upgrade of a site from CMS 6 to CMS 7.5.
Some pages present information that is compiled from several properties on the page (and other pages) and therefore I can't use the EPiServer:property tag.
When I publish changes in the GUI there is no full page reload. The page view seems to be updated with javascript and that works fine for all data presented in EPiServer:property tags. But my custom data will keep it's old value until I reload the page manually.
Is there any way around this?
Thanks!
Martin