02 2019 档案

开启Group Work Site功能
摘要:Group Work Site只针对sharepoint本地版本,需要变更服务器配置文件。 Go to C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\1033\XML open WEB 阅读全文

posted @ 2019-02-22 16:33 赢在当下_Victor 阅读(127) 评论(0) 推荐(0)

Jquery根据属性模糊查询节点
摘要:[属性名称] 匹配包含给定属性的元素[attr=value] 匹配包含给定属性的元素 (大小写区分) //$("li[id='10']")[attr*=value] 模糊匹配 //$("input[type='Text'][value*='Victor']")[attr!=value] 不能是这个值 阅读全文

posted @ 2019-02-22 15:06 赢在当下_Victor 阅读(934) 评论(0) 推荐(0)

设置用户字段
摘要:1.设置单用户 2.设置多用户 阅读全文

posted @ 2019-02-22 14:58 赢在当下_Victor 阅读(192) 评论(0) 推荐(0)

Javascript Number与Jquery.Number
摘要:var test1= "1234.5678"; var number=Number(test1);//new Number(1234.5678); number.toFixed(2);//1234.56 //需要引用 jQuery Number Format 插件var test2=$.Number(1234.5678,2);//1234.56 var test3=$.Number(1234.... 阅读全文

posted @ 2019-02-21 14:39 赢在当下_Victor 阅读(2137) 评论(0) 推荐(0)

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

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

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

posted @ 2019-02-20 15:23 赢在当下_Victor 阅读(498) 评论(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 阅读(123) 评论(0) 推荐(0)

sharepoint lookup字段的读取与赋值
摘要:1.读取 2.赋值(单个) 3.赋值(多个) 阅读全文

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

Caml语句中筛选lookup字段
摘要:15 阅读全文

posted @ 2019-02-20 14:42 赢在当下_Victor 阅读(459) 评论(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 阅读(799) 评论(0) 推荐(0)

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

posted @ 2019-02-20 13:50 赢在当下_Victor 阅读(434) 评论(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 阅读(828) 评论(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 阅读(1198) 评论(0) 推荐(0)

导航