
深入浅出SharePoint
风影极光
PM,SharePoint Expert & DBA
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ContentType大展拳脚——定义List
应用场景:在请假系统中,需要一个Country列表和Task列表。Country列表作为元数据显示用户所属的国家。Task列表工作流审批使用,并且呈现Task的编辑aspx页面需要隐藏删除按钮。 <ContentType ID="0x010091B420276C6原创 2011-09-02 17:54:39 · 1501 阅读 · 0 评论 -
深入浅出SharePoint—字段类型定义
LinkTitle类型:一般我们保留Title列,注意此列的ID是固定的。 自定义LinkTitle列: Indexed="TRUE" StaticName="SIRS_Country" Group="AstraZeneca_SIRS" LinkToItemAllowed="Allowed" ListItemMenuAllowed="Allow原创 2012-04-20 14:12:55 · 3675 阅读 · 0 评论 -
深入浅出SharePoint—部署使用InfoPath定制过的List
The form cannot be rendered. This may be due to a misconfiguration of the Microsoft SharePoint Server State Service. http://www.jeremytaylor.net/2010/06/02/sharepoint-2010-the-form-cannot-be-rendered原创 2012-02-22 17:15:42 · 1110 阅读 · 0 评论 -
深入浅出SharePoint—第三方工作流引擎对比
But in general I can post thepros and cons of K2,Nintex as follows · 1)K2 appears to havethe most mature products. Both are quite pricy, though they aresupposedly reworking their cost mode原创 2012-04-27 10:23:50 · 3425 阅读 · 0 评论 -
深入浅出SharePoint—关闭模态窗口后的页面重定向
HttpContext.Current.Response.Write("window.parent.SP.UI.ModalDialog.commonModalDialogClose(1);");原创 2012-04-13 17:26:55 · 3200 阅读 · 0 评论 -
深入浅出SharePoint—创建ContentType
http://msdn.microsoft.com/en-us/library/gg295290.aspx原创 2012-04-13 10:28:03 · 2466 阅读 · 0 评论 -
深入浅出SharePoint—目录
基础篇 进阶篇 高级篇原创 2012-04-13 10:26:44 · 2206 阅读 · 0 评论 -
jQuery操作Asp.net控件
label 赋值操作: $("span[id$=lbTotalAmount]").html(TotalAmount); $("span[id$=lbTotalAmount]").addClass("RedColor"); 取值操作: $("span[id$=lbTotalAmount]").text(); TextBox $("input[id$=lbTotalAmount]")原创 2012-04-23 11:40:39 · 2814 阅读 · 0 评论 -
深入浅出SharePoint—使用Code Behind来扩展SitePage
http://blogs.msdn.com/b/kaevans/archive/2010/06/28/creating-a-sharepoint-site-page-with-code-behind-using-visual-studio-2010.aspx原创 2012-04-10 15:01:33 · 2262 阅读 · 0 评论 -
深入浅出SharePoint—使用SPSiteDataQuery 查询多个List中的数据
SPSiteDataQuery 如果你需要在一个网站集中查询多个站点的多个List中的数据原创 2012-04-09 17:10:57 · 2507 阅读 · 0 评论 -
深入浅出SharePoint—Sandbox方案不能做什么?
定制的Content Type原创 2012-04-10 10:42:04 · 2401 阅读 · 0 评论 -
深入浅出Powershell——部署错误问题
The type initializer for 'Microsoft.SharePoint.SPXmlDocCache' threw an exception. 重新启动VS2010原创 2012-03-02 14:50:05 · 1126 阅读 · 0 评论 -
深入浅出SharePoint—打包部署之利用Visual Studio生成文件
生成站点的WSP 1 deactivate 2 delete原创 2012-02-22 10:49:23 · 939 阅读 · 0 评论 -
深入浅出SharePoint—对不同类型的字段进行赋值
SPFieldLookupValue对象即为查阅项的值,它有两个属性,分别是LookupId和LookupValue,LookupId为此查阅项的值在数据源List中的ItemID,LookupValue为此查阅项的值在数据源List中所对应的值,一般构造语句为SPFieldLookupValue myValue = new SPFieldLookupValue(LookupId, LookupV原创 2012-04-20 18:35:07 · 3861 阅读 · 0 评论