Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Could it work to attach the movingpageevent and check if the parent page is the wastebasket?
Hello,
I have handle the delete (move to wastebasket) of my pages by adding an eventt on DataFactory.Instance.MovedPage += Instance_MovedPage; and checking if the page IsDelete like this:
private void Instance_SavedPage(object sender, PageEventArgs e)
{
var page = e.Page ?? DataFactory.Instance.GetPage(e.PageLink);
if (page.IsDeleted)
{
e.Page = page;
....
}
}
But how can I detect when a user retore the page?
REgards,
Benjamin