0
votes
0answers
89 views

UpdateListItems ajax call is successful but does not return created item

I want to create a new list item and store the created item's ID in a variable for later usage. So I'm using UpdateListItems and making an ajax call and then in the success callbakc function ( ...
0
votes
2answers
537 views

Batch update with javascript client object model?

Anybody know how to do batch list updates with the javascript client object model in Sharepoint 2010? I'm putting the list into an array right now and then a kendo grid is reading it. I can update ...
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 ...