12 2010 档案

摘要:2010年11月25日 List definitions Type and Base Type One if the interesting topics in SharePoint customi... 阅读全文
posted @ 2010-12-20 11:32 Peter Wang 阅读(398) 评论(0) 推荐(0)
摘要:SharePoint中ConentType有时候删除不掉,一定是被哪些内容依赖。有些时候很抓狂,自认为删掉了所有的依赖项,但还是不能删除。只好直接去db查找content type的依赖项.找到内容库的ContentTypeUsage,发现ContentTypeId是varbinary内容。使用fn_varbintohexstr函数进行转换,sql语句如下。SELECT SiteId, sys.fn_varbintohexstr(ContentTypeId) AS ID, WebId, ListId, IsFieldId, ClassFROM ContentTypeUsageWHERE (sy 阅读全文
posted @ 2010-12-09 15:37 Peter Wang 阅读(519) 评论(0) 推荐(0)
摘要:今天有人提到了这个问题,默认的sharepoint calendar只能自己看到自己的canlendar和event。 如果要实现下面的这种功能,必须定义不同的数据源,定义不同的audience targeting ,然后实现自定义的日历webpart和数据源绑定。来源:http://www.hellomails.com/blog/?p=13826 Issue NewSoft Company uses corporate intranet site based on MOSS 2007. It is required to create vacation calendar for the 阅读全文
posted @ 2010-12-07 16:49 Peter Wang 阅读(461) 评论(0) 推荐(0)
摘要:Audit log report的功能很强,可以审计数据(content类如list,library,security,workflow,Security And Site Settings Reports Information Management Policy Reports,)的view,dowload,modify,delete ,insert,expiration&dispositon等,还可以自定义报表。要想使用此功能1:开启site collection feature Advanced Web Analytics2:设置Site collection audi 阅读全文
posted @ 2010-12-07 15:31 Peter Wang 阅读(978) 评论(0) 推荐(0)
摘要:引自:http://blogs.technet.com/b/weeklygroove/archive/2010/08/10/synchronizing-to-sharepoint-in-sharepoint-workspace-2010.aspx离线功能是来自很多真实项目的需求,很多企业用户可以离线工作,然后连线后再同步数据到sharepoint站点或者更新本地数据。以前的groovy workspace已经升级成sharepoint workspace。sharepoint workspace 2010 不支持很多复杂的list或定制后的list,同时也不支持一些content types, 阅读全文
posted @ 2010-12-06 21:01 Peter Wang 阅读(1217) 评论(0) 推荐(0)