A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
One solution:
Bind this event:
PageDB.BeforeSavingProperty += BeforeSavingProperty
protected void BeforeSavingProperty(object sender, PropertyEventArgs e)
{
if(e.Property.IsDynamicProperty)
//Do stuff
}
What event is available to capture a change to a dynamic property? I need to do something whenever a dynamic property is changed, but there seems to be no event that would fire in that instance.