摘要:
创建Time Job继承继承SPJobDefinition 并且实现里边的 Execute方法部署可以手动部署,把程序集放到GAC,手动激活feature如果部署的时候说feature已经存在,在feature的XML里面添加代码AlwaysForceInstall="TRUE",如下安装写到Fea... 阅读全文
摘要:
当点击Document Library里面的文档,使用Edit in Microsoft Excel/Word的时候,出现如下错误:The document could not be opened for editing. A Microsoft SharePoint Foundation comp... 阅读全文
摘要:
安装TFS:Visual Studio 2010Team Foundation Server1.1. TFS安装方案: TFS针对不同的应用环境提供了7种安装方案,在我们实际的应用中最常用的莫过于:单服务器上安装TFS。鉴于这种很常用,所以只介绍这种方案的安装方法。1.2. TFS安装环境:内存:2... 阅读全文
摘要:
1. 知道对方ip查看对方的计算机名方法:开始->运行->cmd->net view 对方ip或者 开始->运行->cmd->nbtstat -a 对方ip2. 知道对方计算机名查看对方ip方法:开始->运行->cmd->ping 对方计算机名或者 开始->运行->cmd->nbtstat -a 对... 阅读全文
摘要:
Item显示的时候,隐藏掉一个字段。在对应的页面(DispForm.aspx, EditForm.aspx, NewForm.aspx)添加Content Edit Webpart,加入JS。SPBookmark_Raise_x0020_Reason是对应的字段名字。如图。隐藏前:隐藏后: 阅读全文
摘要:
SharePoint uses pretty much the same engine as Excel for it’s calculated columns and field validation stuff. There are some exceptions, such as NETWOR... 阅读全文
摘要:
一段简单的JS,把两个长度相同的一维数组转成二维数组输入:arr1=['a','b','c'];arr2=[1,2,3];输出:arr=toTwoDimension(arr1,arr2);arr=[['a',1],['b',2],['c',3]]function toTwoDimension(arr... 阅读全文
摘要:
Chrome中出现的错误,会导致JS错误,可能会引起Update panel中的按钮没有反应,这是Sharepoint 2010在Chrome中的Bug。Uncaught ReferenceError: documentGetElementsByName is not definedUncaught... 阅读全文
摘要:
JS判断Flash是否加载完成(function () { var flash = 网页上某个flash对象。 var interval = setInterval(function () { try { if(flash.IsPlaying()) { //轮询flash的某个方法即可 ... 阅读全文
摘要:
使用在在线测试的程序中,使得有倒计时功能,时间到了之后,自动提交内容。 10 阅读全文