摘要:
Data Loader download file:Setup --> Administration Setup --> Data Loader --> Download the Data Loader如果第一次运行Data Loader的时候,会让你输入用户信息进行认证那么username为你的salesforce登陆用户名,password为你的salesforce登陆用户password + token如下以Download Account数据为准,简单的记录操作步骤:1):首先要到Setting中设置你的Server Host信息2):需要你输入验证信息(用户名+密码 阅读全文
摘要:
Just use Ajax pattern to call object data from server on visualforce page.Following is the Asynchronise demo:If we want to use the Synchronise model. Just use the query function without callback. Following is the demo code.sforce.connection.query("Select Id, Name, Industry From Account order by 阅读全文
摘要:
第一种方式:循环遍历List中的所有item,然后根据条件去判断当前item是否应该被删除【注:要用 i-- 方式去遍历,这也是删除集合里面item的常用做法,如果用 i++ 的方式去遍历删除,会出错,原因显而易见!】SPList targetList = null; try { targetList = currentWeb.GetList(currentWeb.ServerRelativeUrl.TrimEnd('/') + listUrl); } catch { } ... 阅读全文
摘要:
用Feature的方式删除SharePoint2010的Page中重复的WebPart。代码如下所示:public class SupportCenterDuplicatedWebpartRemovalFeatureReceiver : FnxFeatureReceiver { /// /// Event receiver for feature activation /// /// Feature properties passed from SharePoint public override void Fea... 阅读全文
摘要:
编写PowerShell脚本可以删除page中所有的webpart,也可以根据webpart的属性信息去删除特定的webpart。下面的PowerShell脚本便是删除对应page中所有的webpart:param( [string] $webUrl = "http://........:11111/sites/mysite", [string] $pageUrl = "/Pages/myPage1.aspx")$web = Get-SPWeb $webUrl[Microsoft.SharePoint.Publishing.PublishingWeb]$ 阅读全文
摘要:
存在这样一种情况,对应的page已经部署到product的SharePoint环境中,那么在部署下一个版本的时候就不允许把已经创建好的page删除再创建,因此page中修改过的属性就不能再次部署到SharePoint中。鉴于这种情况,我们可以手动的在SharePoint环境中修改page的属性(例如:title),也可以编写feature或者PowerShell脚本处理这种修改。如下便是通过PowerShell脚本修改page的title属性:#webapp url$webAppUrl = http://url.../#web urls$rootWebUrl = $webAppUrl + &q 阅读全文
摘要:
http://www.htmlentities.com/html/entities/The view below displays the characters used in the official W3C HTML and XHTML specifications in readable fo... 阅读全文
摘要:
JS 捕获 input 中 键盘按键 的相应处理事件是很简单的,google搜索一下很容易找到处理方式,请看如下一种简单的处理方式:HTML代码: JavaScript 方法: $("#myinput").on("keydown", function (e) { if (e.keyCode == 13) { //to-do when click Enter Key } });下面列举其他常用按键的所对应的KeyCode:用Jquery绑定其他按键事件的方式,请看如下链接:http... 阅读全文
摘要:
在实际项目中需要对SharePoint2010中的AccessDenied页面进行自定制,于是乎上网搜索相关内容,经实际操作此方法可行,便以此文记录。在SharePoint2010中,由于security的问题,master pages是不能够应用到application pages(AccessDenied,Confirmation,Error,Login,RequestAccess,Signout,WebDeleted)中的;所以我们将不得不创建一个新的application page,并且运行power shell命令 Set-SPCustomLayoutsPage来达到我们预期的效果。 阅读全文
摘要:
通过JQuery去操作前台对象(div,span...)的属性是很常见的事情,本文就简单的介绍几种操作情形。1):通过属性值去获取对象2):用JQuery去修改对象的属性值3):获取并修改对象的Style的属性值这里提供一个简单的前台Html代码,后续操作都是对此段Html代码进行的。 first second third ... 阅读全文