I have a solution that copies all the content of SharePoint lists to a file, and then copies the content of the file back onto SharePoint (used for backups and stage / live environment switches).
Is it possible to disable \"edit item\" in a Sharepoint List when a custom workflow is running? May开发者_开发知识库be a property in the workflow that can be affected?
I have a workflow, which creates a task and deletes it after the task is edited and its useful in开发者_开发问答formation acquired. I created a custom edit form for the task, so I have an SPLongOperat
_site = new SPSite(\"http:\\\\MySite\"); _web = site.OpenWeb(); { list = _web.Lists[sListName]; _web.AllowUnsafeUpdates = true;
Sometimes users require to change information in SharePoint list item that is not editable for them, for instance, a field that is hidden in edit form (in my case it was the records number).