Tagged Questions
The event-receiver tag has no wiki summary.
3
votes
3answers
831 views
SharePoint: Error on unregistering an EventReceiver form a ContentType
I've got some problems unregistering some eventreceivers form a contenttype. The contenttype and the receivers were deployed and registered by myself so I don't try to remove any MOSS built-in or ...
2
votes
2answers
306 views
SharePoint: Multiple events for single item updated
I have an item event receiver for a specific content type that is used in a Pages library. I am using the event logger to debug it, and I can tell that whenever I edit a page and publish it, it fires ...
2
votes
2answers
1k views
Attach EventReceiver to all lists of a sharepoint site
Can we write an eventreceiver that gets fired when any list is updated.
The listtemplateid that we have to specify for an eventreceiver makes our code specefic to one breed of lists. What if we want ...
1
vote
1answer
43 views
SharePoint DocumentSet Event Receiver ItemAdded isn't firing
I've programatically created ContentType based on document set and want to attach event receiver to it. Looks something like this:
SPEventReceiverDefinition eventReceiverDefinition = ...
1
vote
1answer
30 views
Registering Receivers dynamically
I have registered receiver dynamically with service. Now I have a question: will receiver work after service will die?
1
vote
3answers
989 views
SharePoint List Item Event Handlers
I have the following scenario in my SharePoint 2007 project.
I have timer job definition which each 30 minutes updates SharePoint list from the SQL database table.
I also have added item event ...
1
vote
0answers
289 views
SPListItem event reciever doesn't execute ItemAdded event
I've created an item event receiver using sharePoint 2010 and visual studio 2010. The event receiver execute ItemDeleting but it can't execute ItemAdding or ItemAdded events.
My problem is I upload ...
1
vote
1answer
480 views
How should I organize SharePoint Event Receivers in Visual Studio?
We have several custom lists, each of which has several event receivers associated with it (although only a couple have actually been written as of now). This event receivers handle a mish-mash of ...
1
vote
2answers
2k views
Sharepoint item updating event - cancel event back to editform page?
I have an event receiver for a content type to validate some data in the ItemUpdating event. If I cancel the event (some of the data isn't valid for example), I set the properties cancel to true:
...
1
vote
1answer
3k views
Sharepoint : Event Receiver : Item Adding
Anybody used the "ItemAdding" method successfully in an Event Receiver in Sharepoint for validation?
I think it just can't work properly for validation purposes because it seems that :
You can't ...
1
vote
2answers
117 views
How to execute code when a view is updated in sharepoint?
How to execute code when a view is updated in share point portal?
I can not write an event receiver for it because it only fires when list items are updated.
I want to write a handler of some sort ...
1
vote
2answers
1k views
How can I debug a SharePoint EventReceiver with Remote Debugger?
I have written an SharePoint EventReceiver (Windows SharePoint Services 3.0) and want to debug it with Visual Studio 2008 SP1, which runs on a different computer. I have tried the following steps:
...
1
vote
3answers
2k views
How to update SPItemEventReceiver assembly version for a list in SharePoint?
Still in the learning process with SharePoint.
We have an SPItemEventReceiver compiled into its own assembly.
We are using STSDev to package up a SharePoint solution with this EventReceiver as a ...
0
votes
1answer
25 views
SharePoint Content Type Event Receivers Impossible to Remove
I have a very odd situation in my SharePoint staging environment. We recently stood up a new SharePoint 2010 server (single WFE + a DB server), and attached a backed-up content database from our ...
0
votes
2answers
44 views
How to programmatically move (archive) a document from document library of a site collection to another site collection
I have to programmatically move (archive) a document from document library of a site collection to a document library of another site collection in SharePoint 2010, when a specific value is set for a ...
0
votes
2answers
107 views
How do I create an event receiver for a single list that is based on a custom content type?
I am trying to create an event receiver for a list I have created called Questions.
When a new question is added I want an event to fire. I have looked into it so I know I need to create an event ...
0
votes
0answers
131 views
Problem in multiple item deleting event hander in sharepoint 2010
I am having event reciver to delete multiple item in sharepoint list.
If my item is checked in that shold not get deleted from the list is the rule.
In case my first item is check in and second is ...
0
votes
0answers
508 views
SharePoint ItemAdded and SPFile.OpenBinary(), zero bytes
I have an event receiver tied to a SharePoint 2010 picture library. When a picture is uploaded, I want to open it for processing. Files uploaded with the web interface work fine, but files copied ...
0
votes
0answers
290 views
Error loading event receiver assembly when triggered by web service
We have a SharePoint EventReceiver assembly deployed to the GAC that responds to items added to a SharePoint list. It references no other assemblies other than the standard Microsoft ones. The ...
0
votes
2answers
347 views
feature deactivation through command line not firing the SPFeature event reciever
I am deactivating a feature through stsadm tool. I have an event reciever enabled for this action. If i deactivate the feature manually from the site the event is getting triggered but not when ...
0
votes
0answers
620 views
Sharepoint 2010 how to redirect to a custom error page from within WebProvisioned() method
I've have a Site Definition with a webProvisioned() EventReceiver which creates a new sub website. The EventReceiver is to be fired up from the top level site of the site collection. If the new Site ...
0
votes
1answer
95 views
Sharepoint synchrounous event receivers
I have a question about the synchrounous event receivers in Sharepoint 2007.
As example, lets look at the event ItemUpdating: Is it safe to assume that the update operation will succeed if I don't ...
0
votes
1answer
432 views
Problem with event receiver in visual studio 2010
I am trying to figure out how to get the title of a list item from the base.ItemAdding(properties);
I know it's somewhere in properties, because what I want to do is copy the item that was just added ...
0
votes
2answers
493 views
SPItemEventReceiver Context SiteId/WebUrl Incorrect
I have created a SharePoint Event Receiver, that fires on Item Update.
The receiver needs access AfterProperties and ListItem.
When firing the event receiver from a SharePoint web application using ...
0
votes
3answers
2k views
An unhandled access exception has occurred, msmq, Sharepoint error
I have an issue that is occurring after my server reboots. I have some features in SharePoint, for doing various things. One thing they do is add items into a couple of different MSMQ queues. ...
0
votes
3answers
2k views
Error loading and running event receiver Microsoft.SharePoint.Workflow.SPWorkflowAutostartEventReceiver
I have a custom SharePoint workflow attached to a custom ItemAdded event receiver that was working fine up until the last type I promoted it using WSPBuilder.
My code is very close to this example: ...
0
votes
1answer
2k views
Update Files in Sharepoint Document Library
Simply put, I have a custom editForm.aspx in a document library, that uses my own custom dll.
When a user edits a record, I can update all the properties associated with the file, however, when you ...