SPServices is a jQuery library which abstracts SharePoint's Web Services and makes them easier to use.

learn more… | top users | synonyms

0
votes
3answers
119 views

How do i return the manager name if the userID is provided?

Is it possible to retrieve the name of a user's manager using SPServices if the userID is entered? Ie: Either using a people picker field or a text field ("txtUserID) the userID is entered. Upon ...
0
votes
2answers
347 views

Creating Groups via Web Service

I am trying to create groups on a SharePoint 2010 site via the UserGroup.asmx web service. I am using jQuery and SPServices to interact with the web service. When I try to create a group (via the ...
0
votes
2answers
434 views

childColumnStatic is undefined

I am getting the error "childColumnStatic" is undefined . I am trying to implement cascading dropdown using the below code. Here the column "profilesystem" contains more than 20 items. The below ...
2
votes
1answer
1k views

Getting Version History and What Field has Changed

I am using the GetVersionCollection to get the history information from my list. This seems to be working fine; however, what I need to do is get the version history of the individual item which has ...
2
votes
1answer
250 views

Multicolumn textarea area to insert into SharePoint 2007 but display not correctly

I have a form that use SPServices and have a textarea field for user to insert multi rows data. The data from the textarea can be successfully insert into the SharePoint 2007 column of type 'Multiple ...
1
vote
1answer
59 views

Hide fields on NewForm.aspx and EditForm.aspx based on the current user's membership in a SharePoint Group

I have found a number of recommended ways in blogs looking to answer how to do this and have not successfully made any of them work using SharePoint MOSS 2007 and SharePoint Designer 2007. I have ...
1
vote
1answer
28 views

Workflow form display error

I am trying to create a workflow that has an approval process. Once i create the workflow and start it. I get a task added in a Task list but when i try to view it i get this error. The form ...
1
vote
1answer
123 views

Implement Cascaded Dropdowns without using Lookups

I have 3 lists with a great deal of data in them (7-12k rows) that I'm pulling from another system. I want to implement cascaded dropdowns between the three, but I can't populate lookups for 12,000 ...
0
votes
1answer
160 views

SharePoint Client-Object-Model - Return List Item Counts by Created Month

Looking to get monthly totals of items from a list using the SharePoint COM/SP Services. My intention is to pass this data to a D3 chart.
0
votes
1answer
88 views

Object Expected error in Non Edit Mode only

I have an issue with Javascript errors (Object Expected) in normal mode while it works in Edit mode. Its failing on the last line shown below. $(document).ready(function() { updateListItem(); }); ...
0
votes
1answer
50 views

How to know if content was added to a SharePoint list or folder?

I'm using the GetListItemChangesSinceToken service in order to be notified for changes in a sharepoint list. This works ok for deleted items since the ChangeType return Delete , but for added items, ...
0
votes
1answer
150 views

SPServices: Using variable as column name - possible?

When using SPServices, is it possible to use a variable to specify the column to be updated? res = lists.quickUpdateListItem('MyListHere', { ID: ReqD, columnVar : userName }); In the above ...
0
votes
1answer
320 views

How to use spservice for taxonomy terms in metadata administration

I have added terms in termset and need to loopthrough the terms in javascript to get the array of terms. so i used spservice. but not working function GetTerm() { var termStore = ...
2
votes
0answers
125 views

Using SPServices to retrieve InfoPath repeating section fields in a SharePoint 2007 Library?

I have a InfoPath 2007 form that contain a repeating section field. I publish this form to SharePoint 2007, which create a Library. How do I use SPServices to retrieve this field from the Library ...
1
vote
0answers
22 views

Display New item Icon with SPServices

I want to display the New Item Icon with SPServices or using custom Javascript to show a new item icon for n days when Created. I achieved this using XSL. Thank's to Mark ...
1
vote
0answers
129 views

SPServices to retrieve the last record of repeated section data inside Sharepoint library

I have a Infopath that contain 2 fields which I put it as a repeating section as shown in the picture below (for the time being - please ignore the error) How do I retrieve the last record of a ...
0
votes
0answers
51 views

CAML Query on External Content Type not honoring the <In> operator

So I've been testing this out for a day or so. For the life of me I cannot get an external list to listen to honor the <In> operator in CAMLQuery. On any other type of list it seems to work ...
0
votes
0answers
31 views

How to aggregate content based on a URL with SPServices rather than a Content Query Web Part

I hope the below makes sense. I have in the past used this approach: List of links presented on a page Each link would connect to the same page which consists of content query web parts ...
0
votes
0answers
18 views

AdminService file in logs library

Earlier in folder where I keep SharePoint logs once a days about 6 a.m. in AdminService file entry appeared with: Exiting SPAdvApi32.CheckRestartService Entered ...
0
votes
0answers
81 views

executeQueryAsync working fine in IE problem in firefox not calling on asp button client click

function updatefeeall() { var ctx = new SP.ClientContext.get_current(); currentweb = ctx.get_web(); this.list = currentweb.get_lists().getByTitle("ClubFeePattern"); ...
0
votes
0answers
162 views

spcascade dropdowns

I am trying to implement the spcascade dropdown for achieving caascading. My cascading is achieved but somehow i get the following error on btn OK Click, Invalid postback or callback argument. Event ...