The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
174 views

The security validation for this page is invalid error trying to add sharepoint approval workflow to List in ListAdded eventreceiver

What I am trying to do is to attach the OOTB sharepoint workflow [Approval Sharepoint - 2010] to each and every document library that ever gets created. To accomplish this I created a List Added ...
1
vote
0answers
62 views

sharepiont 2010 sandboxed ItemUpdating event receiver triggered only on first 3 items

I have 2 Lists: List A Title Category (lookup to Category List) (choices A, B C) Price (number field) Category Total (number field) ...Some other fields List B Title CategoryA Price (number ...
0
votes
1answer
52 views

How to create event receivers programatically?

We are creating content databases, site collections and libraries programatically. Then we are uploading documents in document library. We want to create event receivers programatically in C# (without ...
0
votes
1answer
163 views

SharePoint 2013 SharePoint-hosted remote event receiver

I am running a SharePoint-hosted remote event receiver in SharePoint 2013. I am quite confused about the concept of SharePoint-hosted app, MSDN mentioned that the app logics are all running in user's ...
0
votes
1answer
191 views

sharepoint online remote event receiver does not working

Hello i recently started to developing sharepoint 2013 . I deply my solution to office365 online account and to my solution i attached remote event receiver. This event receiver should listen to ...
0
votes
0answers
120 views

Force field to update in DataSheet view after save event?

I have a business requirement, to populate some fields (FirstName, LastName, Email) on a list item based on the UserName in the "Userid" field (I perform an AD lookup). Everything works perfectly, ...
0
votes
1answer
104 views

ItemAdded event not fire when adding multi items

I'm using a WebPart to add more than one list item at a time. And I also have an EventReceiver to handle ItemAdded event on this list. The problem is when the WebPart adding items, only first item's ...
1
vote
1answer
33 views

Overriding EmailRecieved without loosing the Base EmailRecieved functionality

I have a document library setup to recieve emails. The emails coming in have a single picture and a csv file which I use for some processing. The override emailrecieved works perfectly but of course ...
0
votes
0answers
141 views

Event Receiver - How to set item value with the value from the existing item in the SAME list?

I have a business requirement to add a new version (revision) of the existing list item. New list item should have this setting: NewItem.ParentID=ParentItem.ID ...
1
vote
1answer
37 views

is it possible to call an event reciever from an event reciever with different properties?

I have an event receiver that runs when metadata on a folder (docset) is updated. In the same event receiver, I want to run kick off an event receiver for each document in the folder. What I want to ...
0
votes
2answers
234 views

update file in Document library

I am working on a requirement event receiver generates page content into Microsoft Word and PDF using a third party DLL. Once the generation is completed I need to upload it to document library. This ...
0
votes
0answers
275 views

Can't use SPItemEventProperties ListItem on ItemAdded in Event Receiver

I'm using event receivers to modify some of the inputs in a SharePoint 2013 site. They are fairly straight forward, here is a simple example public override void ItemAdded(SPItemEventProperties ...
0
votes
0answers
186 views

How to set up an event receiver to extract contents of an XML file to an existing SharePoint List?

I have researched stackoverflow and other support forums - details are a little above my head, so please bear with me. I am using SharePoint Foundation (2010) and Visual Studio 2010. I need to ...
1
vote
0answers
281 views

Item Updating And Item Updated Event-Reciever Field values gets null for InfoPath Form Library

I have a InfoPath form library and custom visual studio workflow associated with it. And also I have a Event-Receiver for the library. When I Update the list item as Following code part the item ...
0
votes
0answers
45 views

How to find out page layout value in an event receiver for publishing page

I need to find out page layout on ItemUpdated from the SPItemEventProperties in a page library. What property value should I be looking for.
0
votes
1answer
202 views

Sharepoint event receiver and linq to sharepoint

I have a sandboxed solution and access some lists with Linq-to-Sharepoint. Now I attached an event receiver to the list type 101 because I have to restrict some files uploaded to picture libraries. ...
0
votes
0answers
174 views

itemupdated event receiver sharepoint 2007 not firing

I have been trying to get this event receiver to work but still unsuccessful. I am able to get the ItemAdded event handler to work when i create new item in the list but ItemUpdated Event is not fired ...
1
vote
1answer
125 views

How to automatically update properties after the file is generated by word automation service?

I used Open XML + Word Automation to generate a word file from template and convert it to pdf. Now both word documents and generated PDFs are in the same document library. The word documents has some ...
0
votes
0answers
154 views

if event receiver to edit or modify the list item, not validating date column [closed]

I need to create an event receiver to modify or edit item in list, column does not validate the check date and always correct thank you very much, I'm from Argentina my English is very bad, sorry
0
votes
1answer
852 views

How to rename SharePoint document and create a new version if the specified file name is already in use?

I need to rename an uploaded document by adding some additional information to its file name, currently I do this with an Event Receiver ItemAdded wiring up on Document Library, using code ...
0
votes
1answer
1k views

Create a folder in document library using Sharepoint event receiver

I am using the following code to create a folder inside my document library. The event get triggered and executed till the last line of my code without any issues. However the folder is not getting ...
0
votes
2answers
462 views

How to pass a value to SharePoint list event receiver?

I have a SharePoint site page with a document library web part on it, once a document is uploaded to this library, some of the library fields need to be updated according to a parameter of the page ...
1
vote
1answer
1k views

EventReceiver not Firing on SharePoint List

I am trying to create an EventReceiver for a blog site (for the Posts list) and am having some trouble getting it working. I want to change the Created By column to Anonymous. Basically I have this ...
0
votes
0answers
101 views

How do I prevent Office applications to update a SPListItem field?

I have a document library in SharePoint whith a custom content type. There is one custom field that is set by an item added event receiver each time a new document is uploaded. My problem occurs when ...
0
votes
2answers
519 views

How do I test an EventReceiver?

I am pretty much going crazy trying to get a SharePoint List Event Receiver to work. I have created an EventReceiver Project in VS and can debug it however, the break points don't work. Basically its ...
0
votes
3answers
2k views

Object reference not set to an instance of an object…Error?

Ok so I totally new to C# and am trying to debug an error. Basically I am trying to create an EventReceiver for a SharePoint List...this is the code that is giving me the object reference error when I ...
0
votes
1answer
99 views

WSS 3.0 ItemAdded

I am working with WSS 3.0 and trying to set some permissions with the ItemAdded-Event. The problem is, that the event dont fire if I add an item. I've searched the whole web and found nothing. It is ...
2
votes
0answers
4k views

How to update field value in current item via event receiver?

EDIT: I've realized that my approach in the second code block was unnecessary. I could accomplish the same thing by doing the following in ItemUpdated: SPListItem thisItem = properties.ListItem; ...
0
votes
1answer
218 views

Event Receiver for lookup column value added should be updated in another column in same Sharepoint list

I am having the list named "XXX". In that list i have two columns named Status, which is the choice column and StatusLookup, which is lookup column. The both column should have the same choices values ...
0
votes
1answer
154 views

Cyclic calling of event receivers

I have a Deleting Event Receiver, say, on list A. Also I have other Deleting Event Receiver on list B. There is a deleting method in both receivers, which deletes items of each other. So, when an ...
1
vote
0answers
210 views

How to disable file system access (by UNC) to the document library in SharePoint 2010?

I created the document library in SharePoint 2010. I can access the document library through UNC path like \server\sitecollection\path, e.g. \domain.com\applications\libraryName Is there any way ...
2
votes
3answers
2k views

ListItem Value not updating on ItemUpdated, only after hitting Refresh

I am new to Sharepoint. I have an EventReceiver hooked to an ItemUpdated event and I want to write a text in a field. When I upload a file the event triggers ok, it goes through the code on ...
0
votes
0answers
307 views

OCR on Uploading Event in SharePoint 2010

I want to perform the OCR while uploading the documents to a document library. I want to do this just to be able to crawl and then search the documents properly. Please let me know: If we can do ...
0
votes
2answers
3k views

Getting SPContext inside event receiver

Hey i created a Event Receiver, problem is that i cant get a reference to the SPContext, SPContext.Current returns null. I need it add some lists to the site. Anyone has an idea on how i could get it ...
0
votes
0answers
373 views

How to Access Values form Two diffren list in an Event Receiver?

I have two Lists in SharePoint one is a calendar list and another one is custom list. In calendar List i have these columns. Title (linked to item) Description Location Start Time End ...
0
votes
1answer
789 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
2k 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 ...
2
votes
1answer
610 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
52 views

Registering Receivers dynamically

I have registered receiver dynamically with service. Now I have a question: will receiver work after service will die?
0
votes
2answers
539 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 ...
2
votes
3answers
2k 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 ...
0
votes
1answer
1k 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
2answers
812 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 ...
1
vote
1answer
535 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 executes ItemDeleting but it can't execute ItemAdding or ItemAdded events. My problem is I upload ...
0
votes
0answers
1k 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 ...
3
votes
2answers
660 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 ...
0
votes
1answer
187 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
560 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 ...
1
vote
1answer
592 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
4k 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 2