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
1answer
54 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
2answers
929 views
SPServices UpdateListItems
Ok, here's the scoop. I have bunch of lists on sub sites that I am rolling up into a list on the parent site. Here is what I have for code:
var title = ...