The list-item tag has no wiki summary.
0
votes
1answer
479 views
Caml query returning multiple lists
Trying to load a list from library containing two files. The following code when tested in CamlBuilder it is returning single row according to the filename selected. But in the program it is returning ...
2
votes
2answers
228 views
Comments for Content Types
One piece of functionality I thought was oddly unincluded in SharePoint 2010 was the ability to create comment trails for content types other than blog posts and to a lesser extent discussion boards.
...
1
vote
1answer
316 views
Sharepoint Ribbon for view item form going full option
I have a view item form which contains a custom WebPart for displaying that item. I have no issue with that but the ribbon for the display form looks weird: It contains lots of options that don't ...
0
votes
1answer
328 views
SharePoint 2007 Error - some part of your SQL statement is nested too deeply
Im working with an application on SharePoint 2007, I encountered an issue where the list item unable to view.
It hit error 1309 "Some part of your SQL statement is nested too deeply. Rewrite the ...
0
votes
1answer
711 views
How to execute code for custom menu action?
I have a custom menu action, declared like this:
<?xml version="1.0" encoding="utf-8"?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<CustomAction
Id="ConvertListLevel"
...
0
votes
1answer
983 views
Create list instance with Visual Studio 2010 and specify Group or Person for field value
I'm creating a list instance in an XML file and I have some fields which are of type "Person or group". In the XML I can specify it like this:
<Row>
<Field ...
1
vote
3answers
2k views
Disable or hide delete button on condition
I have a list called Tenders. I need to make sure that when Tender status field is set to "open" no one can delete it. Ideally would be if I won't see options in ecb and ribbon. It is not connected to ...
3
votes
1answer
409 views
SharePoint 2010 Save ListItem without closing
Is it possible to save a ListItem without closing the modal dialog in SharePoint 2010? Possibly by replacing the save button on the Ribbon with a custom button that calls the submit function and keeps ...
0
votes
1answer
425 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 ...
3
votes
1answer
637 views
ItemAdding event on list item to target a specific custom list
I have an ItemAdding event handler created and targeted to a Custom List. The event receiver seems to be firing on all custom list on the site. I wonder if I should target it to a specific custom ...
2
votes
2answers
1k views
How to add new item in Links list using Managed Client Object Model?
I have created a standard SharePoint Links list, using Managed Client Object Model (for Silverlight). Here's the code:
ClientContext clientContext = new ClientContext(sitePath);
...
3
votes
1answer
967 views
How to disable multiple select on lists in sharepoint 2010?
thank you for reading my question!
I have a little problem with lists in Sharepoint 2010. The goal is to disable the checkboxes on the left of each item, but to keep them selectable.
I know that ...
0
votes
1answer
1k views
List Item Timeout Issue
On one of our production Sharepoint Sites we have a ListItem that will not load it's details. It simply times out and throws an exception with a GUID. The Log file indicates that:
...
0
votes
2answers
296 views
List rollup for recurring meetings
Here is the situation, the client is using SharePoint 2007 and has implemented Meeting worksites for a series of meeting dealing with design reviews. They are wanting a roll-up view of all the tasks, ...
1
vote
1answer
446 views
How to bulk update records in a SharePoint List with a lookup column (with type Person)
In SharePoint 2007 I have a List containing two columns:
"Title" of type single line of text
"Email" of type Person or Group
Because I have to update a lot of records, I use export to Excel to ...