Tagged Questions
0
votes
1answer
90 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
2answers
573 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 ...