In computing, an event is an action that is usually initiated outside the scope of a program and that is handled by a piece of code inside the program.
0
votes
0answers
19 views
Gantt view and javascript events
I'm displaying a gantt view in a page in like this
<Module Name="DefaultBlank" Url="" Path="">
<File Path="EmployeeWorkspacePages\default.aspx" Url="default.aspx" >
<View ...
2
votes
1answer
24 views
ItemUpdated vs FieldUpdated
I have a user request where a Document Library with Content Approval turned on, wants the name of the person who approved the document. So I created an "Approver" column and want to create an Event ...
0
votes
1answer
25 views
Created Outlook event timespans differs in SharePoint calendar
i have the following Problem.
When I create an Outlook Event and Sync it to the SharePoint calendar the Event Times differs.
For Example.
When I create a Event from 8-10 o clock. The SharePoint ...
1
vote
2answers
31 views
simple way to run code after solution deployment
Is there a simple way to run code after solution install and before solution uninstall ?
I know I can do that with feature but I don't want to use it.
0
votes
1answer
101 views
EventReceivers not firing at all (SharePoint 2010)
I wrote some code to do some things before and after an item is added to some lists. The solution is sandboxed.
I have checked and confirmed, through power shell, that the event receivers are bound ...
1
vote
0answers
76 views
How do you Import a list item from a .cmp file using powershell?
I have implemented the code located at this link to export and import a list to a cmp file using powershell and the SPDeployment functions. While trying to better understand this code I came to the ...
3
votes
2answers
262 views
SP 2010 JavaScript events
I want to hook into certain events on a SharePoint 2010 site, specifically the modal dialog open and close events.
Does SharePoint 2010 trigger any events for these kinds of actions? If so, how do I ...
0
votes
1answer
72 views
Workflows not firing as I want them (New vs Changed)
To start with here is my scenario. I have a document library which all users have read-only access to. There are a few trusted people who can upload items to it. A small percentage of the items ...
1
vote
2answers
217 views
How to add on event a PeoplePicker Programmatically to a WebPart
I want to add a people picker to my webpart according to an event. To make it simple I want to add it when I click a button. The code would be very simple, like this:
protected void ...
2
votes
1answer
211 views
Why are my external workflow events delivered twice?
I'm writing a workflow that uses pluggable workflow services to await an external event from an external program. My problem is that, no matter how I re-write it, the external event is raised twice, ...
1
vote
0answers
15 views
change one of reccuring event from workflow
We need create a workflow which change for example category column(work-->done) When We create in Sharepoint Designer workflow with action update list item, this action change all series, however in ...
0
votes
1answer
473 views
SharePoint is not working after setting up the Outlook Web Access
I am working on SharePoint 2010. I am facing problem as SharePoint stopped unexpectedly. I am working on UAT server on client side. So its urgent.
We are facing the problem since we were fixing the ...
0
votes
1answer
143 views
Create EventReceiver for Permission List
I want to create event receiver for Permission list that located at /_layouts/User.aspx page. I think if i knew ListTemplateId of this list I would be able to handle its event. Does anyone know its ...
2
votes
3answers
83 views
How can I know when user changes permission for an item?
Is there any event when user changes item's permission ? I tried to catch SPListItemUpdating event for a necessary list, but it didn't work. Or can I attach to Permission list to handle ...
0
votes
1answer
2k views
SharePoint 2010 events: “SharePoint Web Services Round Robin Service Load Balancer Event: Initialization”
I'm running a SharePoint 2010 environment. Upon checking my eventviewer I noticed I'm regularly receiving the following events:
Log Name: Application
Source: SharePoint Foundation
Event ID: 8312
...
2
votes
2answers
187 views
Add file watermark as it's uploaded
I've been trying to add a watermark to files as they are uploaded to SharePoint.
I tried using several events:
ItemAdding, ItemUpdating, ItemCheckedIn.
In ItemUpdating and ItemCheckedIn the file is ...
1
vote
2answers
459 views
Attach an event receiver to profile property update
Do someone know if it's possible to attach an event receiver to profile updates?
The goal would be to update an external system (such as a CRM) when a user is updating his profile.
1
vote
1answer
694 views
Loading script on every postback
I am trying to load a script (that remembers the clicked nodes for a xsltlistview in a jquery cookie) on every postback.
The events when i postback should be:
1. save clicked nodes in cookie
2. ...
1
vote
2answers
558 views
DisableEventFiring using PowerShell
How can I call DisableEventFiring using PowerShell?
C# code like this :
Type typeInfo = typeof(SPEventReceiverBase);
MethodInfo disable = typeInfo.GetMethod("DisableEventFiring", ...
2
votes
1answer
89 views
How to add an event to a quicklaunch item in SharePoint?
I want to add an event to one of my quicklaunch items in SharePoint, but I don't know how to do that.
Or maybe to link the item to a page that would do what I want and then close and then come back ...
1
vote
2answers
283 views
How to implement 'on document property update' logic?
I need a functionality in which something happens after the properties of a document in document library get updated. I need some kind of event to fire after the user clicks Save button in edit form. ...
1
vote
1answer
620 views
Mysterious Error 3355 - SQL machine not available every day at the same time
One my users reports that he cannot access our Sharepoint MOSS 2007 installation at midnight each night.
I look in the Event Viewer and every day this error appears at 12:25:20 am:
I'm confused by ...
0
votes
2answers
2k views
Event Receiver in SharePoint using ItemAdded and ItemUpdated
I have an Event Receiver that is supposed to fire when a SPListItem is added or updated in a SPList that is a SharePoint Calendar.
I'm using two methods, ItemAdded and ItemUpdating. When I add a new ...
1
vote
1answer
52 views
Webpart updating event
is their a way to listen if a webpart has been updated. like a event reciver.
i could not find anything about it, perhaps if i added a itemupdated event, for pages that have been edited when the ...
0
votes
1answer
199 views
Sharepoint Toolpart Event Not Firing
I have created a Sharepoint WebPart, and I have given it a custom ToolPart that includes a Grid (a Telerik RadGrid, to be exact, though that is rather irrelevant). I have populated the grid, and ...
0
votes
2answers
148 views
Switch off web part's events
I'm brand new to Sharepoint.
How can I switch off web part's events like click and mouseover over title?
2
votes
2answers
461 views
Sharepoint development without Visual Studio on server machine
Till now I was doing Sharepoint development with Sharepoint server and Visual Studio on same machine.
Now there is a Sharepoint 2010 installed on my client machine with no Visual Studio installed.
I ...
3
votes
3answers
356 views
Calculate number of pages in the document in document library
In my SharePoint Server 2010, I have a document library which contails word and pdf files.
For each file in the library, I want to display the number of pages in the file as a column.
I tried but ...
4
votes
1answer
481 views
How to call jquery method in different page event like pageload, ispostback, page refresh, onsubmit
In my master page I am calling the jquery method on pageload event. It will do some truncation operation in a SharePoint page. The problem is, if I have add new item to the SharePoint form and if I ...
2
votes
2answers
95 views
Creation of a “Attend” button under each Event
I would like to ask if somebody could advise me how to create an "Attend" button in the Event form which appears when clicking on an Event. The goal is that there is a list of participants visible ...
0
votes
1answer
209 views
Weekly events are not displayed in the Calendar, but daily OK
I have some Javascript code, that adds events to the Calendar list using Client OM.
If a daily event is added, everything is OK.
But there're some problems with Weekly events. The event is ...
2
votes
4answers
292 views
Is there any event when restoring a SPWeb from the Site Recycle Bin
With SharePoint 2010 SP1 the Site Recycle Bin feature was introduced.
When a site is deleted it appears in this recycle bin. From there the user can restore the site.
Now, my problem is that I need ...
0
votes
1answer
415 views
Get the inserted values from inside a ItemAdding event
Is it possible to get the values that were inserted (to create an item in a list) from inside the ItemAdding event?
For ItemAdded the data is available in properties.ListItem, but for ItemAdding this ...
2
votes
1answer
884 views
What is the scope of DisableEventFiring()?
When I call DisableEventFiring() what events are blocked?
All events? On the current item? All events using the current EventReceiver? What happens if two threads change one item and one ...
0
votes
1answer
329 views
Custom Event Handler to handle Emails in Project Server
I am working on writing an event handler that handles the OnSending event of Project Server in 2010. I am very new to writing event handlers in MS Project and require your help in getting started on ...
0
votes
2answers
247 views
How to detect when user goes from one site collection to another in the same web application?
I have a several site collections in the same web application and I need to handle events when user goes from one site collection to another. I need it for specific actions, like setting "lcid" cookie ...
2
votes
3answers
643 views
Update column status based on time
I'm creating a SharePoint 2010 application called HR Learning And Development. Basically it's an application to manage every employee trainings. Much like a college environment. I have a SharePoint ...
3
votes
4answers
542 views
How to make Grouped View work with the $(document).ready event?
I have a list that is grouped by date:
Normally the list is collapsed, when I open one date, items under it are shown, like:
[+] 2010-01-01
[+] 2010-01-02
[-] 2010-01-03
item1
item2
...
I ...
0
votes
2answers
631 views
Programmatically registering a Sharepoint 2007 event handler
I have an event handler for the ItemAdding event of a document library. However, I cannot get it to handle the event unless I register the event handler using the Sharepoint Event Handler Manager. ...
0
votes
1answer
295 views
Event handler running and activated but not receiving
I have installed an event handler to catch ItemAdded and change the content type if the item is a folder. I have installed and deployed this solution using a WSP and have activated it, but it doesn't ...
3
votes
2answers
2k views
OnWorkflowItemChanged not firing when using SPListItem.Update()
I am experiencing a very weird behavior: After using SPListItem.Update() the OnWorkflowItemChanged is triggered (so the title is misleading), but sends the workflow into a sleep state it never wakes ...
2
votes
1answer
336 views
Upload a file into new document upon folder creation
I have a document library in which I want to store folders (people). Each folder have some metadata (person's properties). Then in each such folder I will hold documents (files) associated with ...
2
votes
2answers
2k views
Suggestions for SharePoint event attendee management
I want to manage attendees attending a number of events in SharePoint.
The idea I have, and I believe IW site is the same, is to:
Create a list for events - basic custom list.
Create a list for ...
0
votes
1answer
442 views
Custom Form onchange event
What's the easiest way to bind an onchange-event to a control inside a custom-form of my custom list?
Just writing it into is not possible.
Changing the controls value should start some functions to ...
1
vote
2answers
664 views
SharePoint 2007 Calendar event type
Anyone know what a calendar item with an eventtype of 5 means? I think its to do with specific instances of a recurring event but am not sure and can't seem to find a definitive list anywhere that ...
1
vote
1answer
2k views
Deploy event receiver to sandboxed solution
I am working with Sharepoint Foundation 2010 on both my development and production machines. My production site is hosted. I am trying to deploy a sandboxed event receiver to the production site ...
3
votes
2answers
492 views
ULS Log event email notification
Is it possible to configure Sharepoint such that it emails me whenever an event with exception severity occurs? If yes then how do I configure it?
0
votes
1answer
941 views
Hide web part using SPLimitedWebPartManager
I'm trying to make a web part that is managing other web parts in the solution. I need it to be able to hide other web parts based on user input. Since I can't use connections I'm trying to do this ...
1
vote
3answers
523 views
Hide ContentTypes based on ListItem value
Users seems to have a hard time picking the right document template when the "New" list contains more then 50 items. As one of lists on the web contains a SPChoiceField it should be possible to limit ...
0
votes
3answers
822 views
Sorting a group in an Events Calendar
Ok so i have a custom list called Events which pulls back all events that are created within a calendar and i am grouping the events by a column called Month. I am then sorting them by the month of ...
