Posts

Getting & Setting SharePoint Form Fields -Jquery(SharePoint)

Question 1: From where to download JQuery Base Library? Answer 1:  http://code.jquery.com/jquery-1.7.2.min.js Question 2: How to include JQuery Script? Answer 2: Upload the JQuery base library to the Assets list and include the library using the below syntax <script type="text/javascript" src="../../Assets/jquery-1.7.2.min.js"></script> Question 3: What attribute to use for getting the INPUT object? Answer 3: We need to use the  title  attribute of the INPUT control <input name="ctl00$m$g_e2bcfa9c_6e16_4b44_9833_22e44201a72b$ctl00$ctl04$ctl03$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="255" id="ctl00_m_g_e2bcfa9c_6e16_4b44_9833_22e44201a72b_ctl00_ctl04_ctl03_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title=" Email " class="ms-long" /> Question 4: How to write JQuery function? Answer 4: <script type="text/javascript" src="../../Assets/jquery-1....

Use Person/Group Picker in Infopath form to send multiple contacts to a SharePoint Workflow

Image
Working on a Policies and Procedures form in Infopath 2010. We have a single field where a user can select multiple reviewers for the workflow. The problem is, I couldn't seem to access this group in SharePoint Designer's workflow tool. This is the workaround. Add a hidden plain text field - I called mine 'Reviewers' Set the default value to this formula eval(eval(Person, 'concat(pc:AccountId, "; ")'), "..") You may have to manually select the 'Person' part (see below). Be sure to select the person folder and click OK. In the field properties, make sure the 'Refresh value when formula is recalculated' box is checked. The formula above will select each person from the group and separate them by semi-colons (see below). use this Test box field(Reviewers String) in the workflow (To address). Please use the original post:http://somethingcode-ish.blogspot.com/2012/08/use-persongroup-picker-in-infopath-form.html

SharePoint Event Receiver Manager (2007 & 2010)

https://speventreceiverman.codeplex.com/

Changing SharePoint 2010’s Service Account Passwords

Image
http://www.toddklindt.com/blog/Lists/Posts/Post.aspx?ID=301 We’ve all seen it, it happens every day. A coworker gets mad, throws a burrito at the boss and the next thing you know they’re getting escorted out by security. If that person know your SharePoint service account passwords, and the burrito was big enough, your boss might want you to change them all to make sure the burrito-thrower doesn’t get into SharePoint and cause some problems. In this blog post I’ll walk through how to change all of the passwords in a SharePoint 2010 farm without it exploding in your face Wiley Coyote style. When writing this blog post I’m basing it on the accounts I suggest in my   SharePoint 2010 Service Accounts   blog post. If you didn’t follow that guide, your experience might be a little bit different. My intention with this guide is to allow you to change your passwords with as little trouble and user downtime as absolutely possible. I recently walked through all of these steps on a...

Migrate content into or out of RBS (SharePoint Foundation 2010)

http://technet.microsoft.com/en-us/library/ff628255(v=office.14).aspx This article describes how to migrate content into or out of Remote BLOB Storage (RBS), or to a different RBS provider. After installing RBS and setting a content database to use RBS, all existing content in that database can be migrated into the database's active provider. You use the same Windows PowerShell 2.0 command to migrate content into or out of RBS, or to another RBS provider. When RBS is implemented, SQL Server itself is regarded as an RBS provider. You can migrate content databases at any time, but we recommend that you perform migrations during low usage periods so that this activity does not cause performance degradation for users. Migration moves all content from the specified content database into the storage mechanism of the newly named provider. This operation can be performed on any Web server in the farm. You only need to perform the operation one time on one Web server for each conte...

Configuring remote blob storage with SharePoint 2010

Image
I have taken this article from the below URL http://blogs.technet.com/b/sharepointjoe/archive/2011/02/01/sp2010-configuring-remote-blob-storage-with-sharepoint-2010.aspx   With Sharepoint 2010, the Remote Blob Storage (RBS) functionality, which allows putting documents into the database filesystem instead of the database itself, came into focus again. To make that happen each content database is located in a specific section of the file system where all the documents are stored. This documents are none the less managed by Sharepoint, a database is mandatory even if the documents are stored as BLOB because metadata is written exclusively into databases. The following installation routines and steps to activate RBS are based on   Technet   and the blogs of   Jie Li   and Todd Klindts . All the following installations have been done on Microsoft   Windows Server 2008 R2   and   Microsoft SQL Server 2008 R2   as there is no support for...