Tagged Questions
0
votes
0answers
37 views
How to filter list in sharepoint by another webpart(dropdown list) in C# code?
I wanna filter list in sharepoint by using dropdown list in visual studio, And view in sharepoint can't serve me in that , And i searched a lot but i didn't reach any thing
0
votes
0answers
21 views
One or more field types are not installed properly, how to check in which field is it failing?
I am getting this error in a timer job that I did not develop.
Error: One or more field types are not installed properly. Go to the list settings page to delete these fields. ...
1
vote
2answers
40 views
Listdata.svc via REST refuses to return data
I'm trying to pull down some list data from listdata.svc using the standard method as documented in the msdn:
var listUrl = 'http://development.contoso.com/_vti_bin/ListData.svc/Contacts';
$.ajax({
...
1
vote
1answer
38 views
In a SharePoint List I cannot see items that are in a folder
I have a sharepoint list (Not Library), where I am programatically adding in a folder:
SPList list = web.Lists[ListID];
SPFolder parent = list.RootFolder;
SPFolder child = ...
0
votes
1answer
28 views
Change .aspx on a SPView
I'd like to create a SPView for my list that points to a complete custom aspx page. And I need to do that through c# code.
Even if I could just override the AllItems.aspx in a Visual Project Project, ...
1
vote
1answer
59 views
Customizing discussions list in SP2013 with JsLink
I'm working on a community site and was looking at ways to modify UI of the discussion list that is presented to the user (and possibly more going forward).
It is my understanding according to the ...
0
votes
1answer
25 views
List with Page_Load event
For a project I'm working on, I'd like to get a Page_Load C# method behind a Document Library, but I've been unable to achieve this, so far. Any help would be greatly appreciated!
Some details on ...
0
votes
1answer
36 views
Link to document library
I have a small issue, basically i have an instance of document library / list, now, how can i get a link to that list / document library?
I'm working with sp 2007
To clarify, here is the code:
...
0
votes
1answer
88 views
Appropriate List permissions and read/write using visual webpart
I am learning SharePoint and just learned how to develop Visual Webparts and read data through CAML and write data also. I have a portal where I have one site collection and under that site collection ...
0
votes
3answers
55 views
On ItemUpdating modify property
I have an issue, with this event. What my purpose is: i want to update one of the properties based on few criterias, so i want do fill a field A if field A is empty and the field B is not empty and ...
2
votes
2answers
277 views
Sharepoint 2013 Community site: Unable to reply on a post
Im working on Sharepoint 2013 Community site template. When I manually create a discussion in discussions list liking and replying features are working fine, but when I programmatically add a ...
3
votes
2answers
83 views
ListItem[“Property Name”] VS ListItem.Properties[“Property Name”]
When we try to get list item properties, three ways of getting property I remember are,
ListItem["Property Name"] //always work fine
ListItem.Properties["Property Name"] // works fine unless I ...
6
votes
3answers
118 views
Filter out folders from a user alert against a list
I have created an alert for a user against a list (more specifically, a document library).
I want the user to be notified of all changes regarding list items (documents) and not any sub folders.
...
0
votes
1answer
45 views
Entering data into SharePoint lists via Silverlight forms
Morning all,
Can anyone advise me if it's possible to enter data into a SharePoint list via a Silverlight Application? if so, are there any basic steps that someone making thier steps into ...
0
votes
2answers
58 views
Sorting out lookup values while getting them
I have two lists,
List A [Document Number, Name, Title,...] (document library)
List B [Information Number, Name, Title, Document Number] (simple list)
Now List B is getting all documents from List ...
0
votes
1answer
23 views
Checking if a list is consuming lookup value column or not
I have two lists,
List A [Document Number, Name, Title,...] (document library)
List B [Information Number, Name, Title, Document Number] (simple list)
Now List B is getting all documents from List ...
0
votes
0answers
26 views
GetList with a Library
I'm relatively new to SharePoint 2010 development and I recently rediscovered the DataContext class. Of particular interest right now is the GetList method. I've seen examples and sample code around ...
1
vote
1answer
91 views
rootFolder.ContentTypeOrder throws unexpected error for sandbox solution
I'm trying to add content types into a library list, in order to make "Visible on New" option ticked.
Firstly I enabled contenttypes in the library, then I want to do this:
SPFolder rootFolder = ...
1
vote
2answers
1k views
how to give Role permission to list programmatically?
I have set my web permission to Inherit Permissions as well as Lists.and programmatically i have add SPUSER to web with assigned 'Restricted Read' access Role.
and also associate SPUSER to List1 ...
2
votes
2answers
168 views
Item Updated through different forms runs Item Updated event receiver
Simple but mind blowing question it is.
Basically I am updating a specific list items through two different ways, one is using ASP.NET web forms and one is using default list forms provided by ...
4
votes
1answer
72 views
Add a Three-State Workflow by Code?
I want to add a three-state-workflow to a list. I know how to add this via Designer but - to keep manual works low - I want to achieve the same goal by Code.
This is what I need:
Add a ...
0
votes
1answer
51 views
Adding EventReceiver to Dynamic List
I am trying to add a Event Receiver to a list that is dynamically created (by code).
So i cannot add a event receiver on the list directly.
I found a way to attach a Event Receiver to the list by ...
0
votes
1answer
102 views
SPList.Delete() vs. SPWeb.Lists.Delete(SPList)
Assuming I already have the list object, is there some difference between calling its Delete extension as opposed to removing it from the Lists collection? Why would I ever choose the latter?
4
votes
2answers
1k views
JQuery Accordion with SharePoint 2010 Custom List
I have a FAQ custom list in Sharepoint 2010 with two columns: Question (title column renamed) and Answer.
I want to display the questions and answers from the sharepoint list in JQuery Accordion. ...
0
votes
2answers
72 views
Does Pages in SharePoint 12 hive have code behind files
I am not sure if we call them application pages or something else but am talking about standard sharepoint forms like "NewForms.aspx" or "EditForm.aspx" for lists in 12 hive.
Does they have any code ...
0
votes
0answers
56 views
Display a custom column in Flat view in sharepoint discussions list
Hi in sharepoint 2013 community site discussions list I have added a custom column. I wanted to display that field in Flat view. Default Flat view in the discussions list can't be edited so I created ...
2
votes
1answer
389 views
How to add a registration button to a calendar list / list form?
my use case is: I want to create an event management system without using meeting workspaces (sadly I/We can't use them, at least the senior dev. told me). There shall be:
One Calendar List, ...
0
votes
0answers
17 views
Adding contacts from exchange
I have a sharepoint list that needs to be syncronyze with exchange. I mean exchange and not outlook.
The problem they have using the sharepoint site is using a tool i made for sending multiple ...
1
vote
2answers
705 views
How to get item count for a List's View?
I have a Sharepoint List called "Tracker" that represents customer-submitted defects. I have a View on this list that only shows the items created in the last 7 days. This view works just fine when ...
0
votes
1answer
41 views
How to make faster readable elements from the list?
I have an ASP Calendar, which shows elements from the list. If I try to bind the elements to the list, there are a lot of elements for example 35 429 elements. It takes up to 4 minutes to load this ...
0
votes
2answers
88 views
Is it possible to programmatically write to 2 different lists at the same time?
So heres a conceptual question that I can't really find in any books. Is it possible to programmatically write to 2 different lists a the same time. I mean I think it is, but my code is not working ...
0
votes
1answer
25 views
How to backap a list with a dates older than a half of Year
I want to backup a list when a dates are longer then one half of year. How can I do it on list?
I have got a list:
Contract | Worker | Day | Percent
...
0
votes
1answer
258 views
Creating Site column with a custom SPFieldType
i have this solution deployed on my sharepoint.
http://ilovesharepoint.codeplex.com/releases/view/44989
And i created a Site column of type Lookup with picker that is from the above solution.
...
0
votes
1answer
245 views
Sharepoint 2013: Get url of discussions in Discussions List
Im working on Sharepoint 2013 Community site, Im developing a custom webpart where I filter the discussions and displaying the title of the discussions as a Hyperlink.
How can I find the url of the ...
1
vote
1answer
251 views
Sharepoint 2013 Community site: Get values from “Discussions List” list
Im trying to get values from "Discussions List", When I tried to get the values of "Body" field from that list its giving only the values of the replies of discussion. I couldn't access the values of ...
0
votes
1answer
59 views
Pro grammatically adding choice field with another field relation
sorry about the title am not sure how i should name it.
I want to be able to create two columns for a list that have a division - subdivision relation.
If in the first field if i choose People the ...
2
votes
1answer
184 views
Should we use web service lists.asmx over CAML when working with large lists
There is a list that has around 100k items in a SharePoint Site Collection. This site has been customized to serve certain business requirements through visual webparts.
While, regular CRUD ...
0
votes
2answers
766 views
Add Listview of parent site list
i want to add a page where users can view and edit a list, problem is the list is not in the site but rather in its parent site. I also want to be able to filter the list so they can only see a items ...
0
votes
2answers
476 views
How to check if list item exists using item URL
At the moment I am trying to delete list item file using this code,
SPSecurity.RunWithElevatedPrivileges(delegate()
{
using (SPSite site = new ...
0
votes
1answer
43 views
Determine the location List or Document Library
How can I determine if I'm in the List or Document library and I'm not on some page that is inside the document library?
For example if im on the page which is located in the pages and I do:
...
1
vote
2answers
70 views
Parsing boolean ListItem property into string
I am currently parsing boolean into string using this line, but it ain't working all of times, is there any alternative ?
bool.Parse(listItem.Properties["Boolean Property"].ToString()) == false
1
vote
1answer
315 views
Add various Fields in a Sharepoint List Programmatically
i need a method where add various Fields in a Sharepoint List, but these Fields must be in the parameter of this method.
Show me this method and how should I use it.
1
vote
2answers
1k views
Try Get Field with client object model without error
Question regarding the client object model. I wrote some client script for a procedure, but i don't know, how can I determine if the list or item has the field available or not?
For example:
...
0
votes
1answer
39 views
exporting lists from live to development
Ive created a small equipment calibration system in sp2010 using 2 lists that are linked. Ive made some customisations using sp developer. The team have now requested that the equipment owners are ...
1
vote
3answers
300 views
Linking one-to-many (Employee to Salary History) lists in SharePoint
Here is my issue:
[Edit]:
Alright, this is almost turning into a separate question at this point...my apologies. To cut right to the chase, here is my business requirement. I have an Employee record ...
2
votes
1answer
268 views
how to get Custom List Item Property
I added a new column to Sharepoint Custom list which is boolean type, now each time I upload a item to list, it displays that column to check or leave it blank, by default its checked, I wanna access ...
0
votes
2answers
131 views
How to check if Item Deleted in a list was the last item (in a EVENT Receiver)
I want to check If deleted item is the Last Item deleted in the List in following method,
public override void ItemDeleted(SPItemEventProperties properties)
{
}
I know I can get web url using ...
0
votes
1answer
675 views
Event receiver for a custom List
I created a custom Event Receiver using WSP builder, and in elements.xml file i have given the ID of list which i find in elements.xml of List definition of particular list.
I also activated the ...
0
votes
1answer
174 views
Adding column to a SPList
Normally I create a New List if I want to add an additional column to a List that already exists in a web.
Wondering what would be the best option, should I create a new list with additional column ...
1
vote
2answers
770 views
Error using SPRequest when the SPWeb is already disposed
Is this correct way of using the SPSite and SPWeb and the SPList.
private SPList list;
pulic void getList()
{
using (SPSite site = SPContext.Current.Web.Site.WebApplication.Sites[0])
{
using ...




