2019年2月20日

想数组特定位置插入值,删除数组中特定值-splice

摘要: 1.向特定位置插入元素 2.从数组中删除特定元素 阅读全文

posted @ 2019-02-20 15:30 赢在当下_Victor 阅读(344) 评论(0) 推荐(0) 编辑

$.inArray()

摘要: $.inArray()函数用于在数组中搜索指定的值,并返回其索引值。如果数组中不存在该值,则返回-1。 更多关于Jquery的知识:https://www.cnblogs.com/GreenLeaves/p/5641157.html 阅读全文

posted @ 2019-02-20 15:23 赢在当下_Victor 阅读(494) 评论(0) 推荐(0) 编辑

$().each, $.each() , forEach

摘要: $().each()dom处理上用的比较多 $("input[type='checkbox']").each(function(i){ $(this).attr("checked",true); }); $.each()用于处理数组 var data=["a","b","c"]; $.each(data,function(index,value){ alert(i+"..."+... 阅读全文

posted @ 2019-02-20 15:17 赢在当下_Victor 阅读(113) 评论(0) 推荐(0) 编辑

sharepoint lookup字段的读取与赋值

摘要: 1.读取 2.赋值(单个) 3.赋值(多个) 阅读全文

posted @ 2019-02-20 14:53 赢在当下_Victor 阅读(318) 评论(0) 推荐(0) 编辑

Caml语句中筛选lookup字段

摘要: 15 阅读全文

posted @ 2019-02-20 14:42 赢在当下_Victor 阅读(451) 评论(0) 推荐(0) 编辑

sharepoint Jsom一些基本操作

摘要: 引用 Microsoft CDN 中的 AJAX 库。 通过使用相对于加载项 Web 的 URL 引用 SP.Runtime.js 文件。 通过使用加载项 Web 相关 URL 引用 SP.js 文件。 <script src="//ajax.aspnetcdn.com/ajax/4.0/1/Mic 阅读全文

posted @ 2019-02-20 14:18 赢在当下_Victor 阅读(782) 评论(0) 推荐(0) 编辑

JSOM启动工作流

摘要: 工作流重新发布后,想重新启动新发布的工作流,先到List的workflow Setting里将之前已经启动了工作流的项目的工作流全部删除, 然后通过JSOM将新的工作流绑定到项目上。 阅读全文

posted @ 2019-02-20 13:50 赢在当下_Victor 阅读(389) 评论(0) 推荐(0) 编辑

数据量太大时,如何实现分页查询-CSOM

摘要: static List getEmployee() { string account = ConfigurationManager.AppSettings["account"]; string password = ConfigurationManager.AppSettings["password"]; string empUrl = ConfigurationManager.AppSetti... 阅读全文

posted @ 2019-02-20 11:02 赢在当下_Victor 阅读(812) 评论(0) 推荐(0) 编辑

数据量太大时,如何实现分页查询-JSOM

摘要: 利用Jsom实现分页查询: var data=[]; function getItems() { licenceContext=new SP.ClientContext(); //var licenceContext =SP.ClientContext.get_current(); licenceWeb=licenceContext.get_web(); licenceList=lice... 阅读全文

posted @ 2019-02-20 10:54 赢在当下_Victor 阅读(1176) 评论(0) 推荐(0) 编辑

导航