Try our conversational search powered by Generative AI!

How can I capture a change to a dynamic property?

Vote:
 

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.

#63942
Dec 05, 2012 11:45
Vote:
 

One solution:

Bind this event:

PageDB.BeforeSavingProperty += BeforeSavingProperty

protected void BeforeSavingProperty(object sender, PropertyEventArgs e)
{
    if(e.Property.IsDynamicProperty)
      //Do stuff
}

    

#64037
Dec 08, 2012 0:38
This topic was created over six months ago and has been resolved. If you have a similar question, please create a new topic and refer to this one.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.