1
vote
2answers
43 views

Item ID of current row

I am working on a script that needs to pull the SharePoint list item ID from the current row. I have a checkbox field in a multi-item form webpart that, when checked, needs to update the item without ...
1
vote
0answers
50 views

COM BCS model programmatic creation methods

Following the source code found here: http://code.msdn.microsoft.com/office/Creating-SharePoint-2010-ad694d17 I've managed to create the Create, Update and Delete method, but only the Delete ...
0
votes
1answer
147 views

Client Object Model to SharePoint Links List

I want to get URLs from SharePoint Links list using client object model javascript, can someone help me, I tried the following script but when I am alerting its result it shows me the URL value as ...
1
vote
0answers
65 views

Filter Calendar view by Title in SharePoint 2010

i want to filter calendar view using title field. Is it possible to filter calendar view without make changes in modify view ?
2
votes
1answer
75 views

Anonymous access issue in SharePoint 2010

I set an anonymous access to home page in sharepoint 2010. but when i open page like 'http://servername/Sitepages/homepage.aspx' , i working but when i open http://servername/ , its not ...
-1
votes
1answer
128 views

Display Calculated column in List NewForm

How to display Calculated column in SharePoint List NewForm.aspx?
1
vote
1answer
103 views

Windows 8 App using COM dlls of Sharepoint gives error “Cannot resolve Assembly or Windows Metadata file 'System.Web.Services.dll'”?

I have created a sample app using Windows 8 C# XAML to get site info of SharePoint 2010 using COM Dlls. I have added reference of: C:\Program Files\Common Files\microsoft shared\SharePoint ...
1
vote
0answers
92 views

Getting column information from a sharepoint 2010 list

I'm trying to figure out how i can get information about a column in a Sharepoint List, like what type of column it is (single line, number, date etc...) and whatever additional column info that ...
1
vote
1answer
397 views

Unable to get correct element on a sharepoint page using document.getelementbyid('<%textboxID.ClientID%>')

I have a sharepoint website which has multiple instances of the same visual webpart. On button click I am trying to get a textbox present in the usercontrol of the webpart using ...
4
votes
2answers
95 views

Is it possible to Fire event when Content type added in Shared Documents in sharepoint 2010?

How to fire event when any content type added in shared document library ? How to handle this event ?
0
votes
0answers
152 views

SharePoint Client Object Model - Problem adding Item to List

The VB code below works in a stand-alone Silverlight app to add new items to a pre-existing list, but when I include it in a larger app it doesn't. The only difference I can see is that with the ...
0
votes
2answers
1k views

How Can I Add a New File to a Document Library With Client Object Model?

I'm a beginner with SP COM. I can't find any samples about this online. Could anybody tell me how I should proceed to add or remove a file from a document library in SP 2010 with the Client Object ...
0
votes
0answers
56 views

Silverlight & SharePoint Client OM - MessageBox.Show not working in OnAddSucceeded or OnAddFailed

This may be more of a Silverlight issue than a SharePoint issue, but in the following VB code which adds items to a SharePoint list, I would expect to get two pop-ips ("Person added" and "Finished") ...
0
votes
1answer
154 views

Delete File History With Client Object Model (Sharepoint Foundation 2010)

I'm using the Client Object Model to interface my application to SharePoint 2010 Foundation. This application generates some versions of the same file... it's possible to see all the versions in the ...
2
votes
1answer
1k views

How to get only the document libraries from a sharePoint site using SharePoint Client Object Model?

Usually when we need to get all the document libraries from a SharePoint site, we can follow the given code snippet:- SPListCollection lstCol = ...
1
vote
3answers
579 views

Is it possible to use Sharepoint Client Object Model for a Windows Application?

Is it possible to use Sharepoint Client Object Model for a Windows Application? If yes then how to do it? Thanks in advance...
0
votes
0answers
105 views

Creating Content Organizer Rules using Client Object Model

I want to create Content Organizer rules using "Client Object Model" Is it possible to create CO Rules using client object model?? Any pointers to this would be helpful. also can't i treat the ...
1
vote
2answers
947 views

Client Object Model - How can I access a List using relativeServerUrl

I am using the client object model and I want to access a List using the server relative Url. Folders can be accessed using the web.GetFolderByServerRelativeUrl but no such function exists for lists. ...
0
votes
0answers
378 views

Retrieving Document Library item URL from ID

How can I retrieve the URL of an item/document in a (generic) document library when the only thing I have is the ID, obtained through: SP.ListOperation.Selection.getSelectedItems(); My intention is ...
0
votes
0answers
126 views

sp.js problem with third party library

My sp.js load is conflicting with Mootools 1.4.1's mootools-core.js, the error output is: Webpage error details Message: Object doesn't support this property or method Line: 2 Char: 1 Code: 0 URI: ...
1
vote
1answer
165 views

How to Create multiple Document Uploader in Client Object Model?

I want to create multiple file upload application(Client Object Modal) which upload the multiple document in the specific(selected) document library with the meta data(custom properties in library). ...
0
votes
3answers
541 views

how to check CamlQuery results

.I am running below query against a sharepoint list. How to check the results of below Camlquery? cPop is set with value 'AboutUs'. Result is always zero records although list has valid matching ...
0
votes
1answer
558 views

To check edit permission on a specific list using ecma script client object model

Users will have read permission at web level but in some scenario few users can have edit permission on just one list under the web (role is broken for the list and explicit permission is given on the ...
2
votes
1answer
406 views

What is the difference in GetCurrentCtx() and SP.ClientContext.get_current()?

Is there some reference to this subject? Both methods return completely different objects.
2
votes
4answers
634 views

where clause is ignored when query list

I have a CAML query which returns lists by a lookup field. here is the query <Query> <Where> <Eq> <FieldRef ...
0
votes
1answer
356 views

Logical AND ,OR CAML Query not working in External List

I am using ClientContext Class and CAML query to retrieve items from External List in sharepoint 2010.I have built the query with Logical AND Condition in CAML Query like this string sDataFilter ...
1
vote
1answer
209 views

Sharepoint managed client object model - Updating Eventdate in calender

I am using managed client object model in sharepoint and I am adding EventDate and on adding that I am catching exception which says Microsoft.SharePoint.SPFieldValueException if ...
0
votes
0answers
241 views

How to get all the users who have access to a sharepoint subweb

Using ecma client object model, we can retrieve all the users under a sharepoint site collection, from User Information List using API (clientContext.get_web().get_siteUserInfoList() ) or CAML ...
1
vote
2answers
305 views

Getting the error “The underlying connection was closed: An unexpected error occurred on a receive.” using Client Object Model

I'm trying to connect to a SharePoint 2010 site using the .NET Client Object Model. When I run test code from a windows console app that I have written, I have no problems. When I try to run the same ...
1
vote
1answer
255 views

Windows Application to access the list in a Sharepoint Site using Client Object Model

I have created a Windows Application, which uses Client object model to access lists in a Sharepoint site(installed and configured on a separate server). I have used the default credentials to access ...
2
votes
1answer
911 views

How do I get a specific file using Client Object Model in Silverlight?

I can't seem to find any direction when trying to filter a FileCollection (Picture Library) by a specific value. I am 'trying' to use the Silverlight Client Object Model to access list data in ...