2011年8月15日

JQuery 简单选择器

摘要: 在应用JQuery的时候老是记不住Jquery的选择器,总是要先查资料,比较郁闷,在这里把简单的常用的选择器记录下来,以供以后查阅。更多的JQuery 选择器请查阅JQuery官网。1. ID选择器: $(“#divId”).2. 类别选择器:$(“.ClassName”).3. 子选择器:$(“li>a”).4. 属性选择器: 在标记的后面用中括号”[”和”]”添加相关属性,然后赋予不同的逻辑。a) $(“a[‘title’]”) :筛选存在title 的A标签。b) $(“a[href=’page.html’]”): 筛选href属性等于’page.html’的A标签。c) $(“a 阅读全文

posted @ 2011-08-15 10:47 张大明 阅读(406) 评论(0) 推荐(0) 编辑

2011年8月3日

SharePoint 2007 _spbodyonloadfunctionnames is undefined

摘要: 在SharePoint page library 中使用了html页面,html页面上面有JavaScript,JavaScript 本身 没有 错误,但是当打开这个html页面的时候JavaScript报错,错误信息为:_spbodyonloadfunctionnames is undefined。经过网上搜索找到的解决方案是在页面上添加SharePoint 的init.js引用。如下:<script type="text/javascript" language="javascript" src="/_layouts/1033/ini 阅读全文

posted @ 2011-08-03 11:28 张大明 阅读(316) 评论(0) 推荐(0) 编辑

2011年8月1日

SharePoint 2007 Modal Window

摘要: Download popup.js and popupclass.js from internet.在页面添加js文件的引用<script type="text/javascript" src="/Style%20Library/MerckVaccinesJS/Modal%20Window%20Js/popup.js"></script> <script type="text/javascript" src="/Style%20Library/MerckVaccinesJS/Modal%20Wi 阅读全文

posted @ 2011-08-01 10:25 张大明 阅读(194) 评论(0) 推荐(0) 编辑

SharePoint Pagelibrary XML 修改

摘要: 主要逻辑描述:从pagelibrary中下载xml到内存中,更新xml文件的值后再上传到pagelibrary,并且覆盖旧文件,并且签入,发表,审核!public void UpdateListOfPopupURL(SPWeb web, Guid ListId) { string queryString = @"<Where><Eq><FieldRef Name='Title' /><Value Type='Text'>" + Constants.XML_FILE_NAME + "&l 阅读全文

posted @ 2011-08-01 10:06 张大明 阅读(247) 评论(0) 推荐(0) 编辑

Ajax读取操作xml

摘要: 编辑器加载中...//判断Array中是否存在某个值Array.prototype.inArray = function(value)// Returns true if the passed value is found in the // array. Returns false if it is not. { var i; for (i = 0; i < this.length; i++) { if (this[i].toLowerCase() === value.toLowerCase()) { return true; } } return false;};//Check th 阅读全文

posted @ 2011-08-01 09:47 张大明 阅读(196) 评论(0) 推荐(0) 编辑

2011年7月24日

SPGraphviz SharePoint上创建图表,关系图

摘要: 地址:http://spgraphviz.codeplex.com/http://sadomovalex.blogspot.com/http://www.cnblogs.com/Sunmoonfire/archive/2010/12/22/1855534.htmlsCodeplex上看到的SPGraphviz项目。http://spgraphviz.codeplex.com。利用SPGraphviz,你可以创建自己的图表,架构图,关系图等,并且无需编程或使用任何外部应用程序即可显示在Sharepoint中。你可以用它来显示一个组织结构,门户网站的层次结构,文件的版本历史记录的图形化表示,或项目 阅读全文

posted @ 2011-07-24 16:27 张大明 阅读(336) 评论(0) 推荐(0) 编辑

2011年7月20日

ASP.NET 缓存学习

摘要: ASP.NET 缓存在项目中的引用,如下: private staticobject _lock = newobject(); protected voidPage_Load(object sender, EventArgs e) { if (!IsPostBack) { //Set outputcache string Duration = ConfigStore.GetValue("MerckVaccine", "AboutToLeaveCache").ToString(); string URLList = ""; lock ( 阅读全文

posted @ 2011-07-20 21:21 张大明 阅读(311) 评论(0) 推荐(0) 编辑

2011年6月8日

使用 WSPBuilder 创建List Instance WSP 包

摘要: Project structure 2. Feature xml <?xml version="1.0" encoding="utf-8"?> <Feature Id="C257B7BE-D5F3-4b9d-B146-5F13F2E96AE9" Title="CreateAnnouncementList" Description="Description for CreateAnnouncementList" Version="12.0.0.0" Hidd 阅读全文

posted @ 2011-06-08 16:13 张大明 阅读(267) 评论(0) 推荐(0) 编辑

SharePoint 2007 List Template WSP

摘要: Project StructureFeature.xml<?xml version="1.0" encoding="utf-8"?><Feature Id="74681469-FB4C-41f3-9451-3DE980551A68" Title="AnnouncementTMPT" Description="Announcements List template" Version="1.0.0.0" Hidden="FALSE" Scop 阅读全文

posted @ 2011-06-08 09:47 张大明 阅读(219) 评论(0) 推荐(0) 编辑

2011年5月19日

SharePoint XSLT Demo

摘要: <xsl:template name="TemplateNmae" match="Row[@Style=TemplateNmae']" mode="itemstyle"><xsl:param name="CurPos" /><xsl:param name="AOI"/><xsl:variable name ="MaxRows" select ="count(//Row[contains(@Canonical,conc 阅读全文

posted @ 2011-05-19 12:22 张大明 阅读(517) 评论(0) 推荐(0) 编辑

导航