Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SharePoint list event receivers not firing when copying and pasting using explorer view

Here's the deal, I have various event receivers registered to a document library:

  • ItemAdded
  • ItemAdding
  • ItemFileMoved
  • ItemUpdating

These event receivers work as expected in all cases, APART FROM copying and pasting into explorer view. It's worth noting that the event receivers do fire off when MOVING from explorer view into explorer view!

Has anyone else experienced this? Is there a way to fix this?

like image 306
Zarek Avatar asked Sep 28 '09 10:09

Zarek


Video Answer


1 Answers

Workaround:

  • Create a SharePoint Designer Workflow, attach it to your Doc Library.
  • Make it run when the item is changed or updated
  • Give it a simple step with the following Action (no conditions)
  • Update field in the Current Item
  • Select the "Title" field, set it to "Changed".

You are probably able to capture the events from your .NET logic now.

like image 152
Francisco Aquino Avatar answered Jan 04 '23 05:01

Francisco Aquino