摘要: 引用以下两个dll Microsoft.SharePoint.Client.dll Microsoft.SharePoint.Client.Runtime.dll 阅读全文
posted @ 2018-06-21 13:49 JackHu88 阅读(576) 评论(0) 推荐(0) 编辑
摘要: function startWorkflow(itemID, subID) { var context = SP.ClientContext.get_current(); var web = context.get_web(); var wfServiceManager = SP.WorkflowServices.WorkflowServicesMan... 阅读全文
posted @ 2018-06-21 13:46 JackHu88 阅读(155) 评论(0) 推荐(0) 编辑
摘要: function inheritPermission(id){ var ctx = new SP.ClientContext.get_current(); var list = ctx.get_web().get_lists().getByTitle("Team Documents"); var item = list.getItemById(id); //i... 阅读全文
posted @ 2018-06-21 13:43 JackHu88 阅读(75) 评论(0) 推荐(0) 编辑
摘要: var ctx = new SP.ClientContext.get_current(); var list = ctx.get_web().get_lists().getByTitle("Test"); var item = list.getItemById(26); item.set_item("Author", 764); item.up... 阅读全文
posted @ 2018-06-21 13:41 JackHu88 阅读(72) 评论(0) 推荐(0) 编辑