Join us this Friday for AI in Action at the Virtual Happy Hour! This free virtual event is open to all—enroll now on Academy and don’t miss out.
Join us this Friday for AI in Action at the Virtual Happy Hour! This free virtual event is open to all—enroll now on Academy and don’t miss out.
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